- Dockerfile with nginx:alpine for minimal image size - docker-compose.yml with container name "mischlabs" on port 8085 - nginx.conf with static asset caching and security headers - Updated Brain.md with deployment documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
154 B
Docker
8 lines
154 B
Docker
FROM nginx:alpine
|
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY style.css /usr/share/nginx/html/
|
|
|
|
EXPOSE 80
|