added docker setup

This commit is contained in:
2025-10-25 22:30:16 +02:00
parent cc28aa9a8e
commit 335c34ce64
5 changed files with 247 additions and 12 deletions

54
.dockerignore Normal file
View File

@@ -0,0 +1,54 @@
# Database files
*.db
*.db-shm
*.db-wal
# Binaries
mealprep
*.exe
*.dll
*.so
*.dylib
# Test and coverage files
*.test
*.out
coverage.txt
*.coverprofile
# Documentation
*.md
*.txt
IMPLEMENTATION_NOTES.txt
SECURITY_REPORT.txt
# Git
.git
.gitignore
# IDE and editor files
.vscode
.idea
*.swp
*.swo
*~
.DS_Store
# Logs
*.log
logs/
# Temporary files
tmp/
temp/
.env
.env.local
# Build artifacts
dist/
build/
# Docker files (no need to include in image)
Dockerfile
docker-compose.yml
.dockerignore