Add Docker setup for containerized deployment

- 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>
This commit is contained in:
Kroonk
2026-04-12 22:06:00 +02:00
parent bebb6a3028
commit a1a170c1da
5 changed files with 70 additions and 15 deletions

7
docker-compose.yml Normal file
View File

@@ -0,0 +1,7 @@
services:
mischlabs:
build: .
container_name: mischlabs
restart: unless-stopped
ports:
- "8085:80"