- Create Dockerfile for backend (.NET 9.0 multi-stage build) - Create Dockerfile for frontend (Node + Nginx multi-stage build) - Create nginx.conf for frontend with API proxy - Create docker-compose.yml with db, backend, frontend services - Add .dockerignore files for backend, frontend, and root - Configure health checks for all services - Configure PostgreSQL volume for persistent data Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
40 lines
381 B
Text
40 lines
381 B
Text
# Root .dockerignore for the entire solution
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# IDE
|
|
.idea/
|
|
.vs/
|
|
.vscode/
|
|
*.suo
|
|
*.user
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build output
|
|
**/bin/
|
|
**/obj/
|
|
**/dist/
|
|
|
|
# Node modules
|
|
**/node_modules/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Test results
|
|
**/TestResults/
|
|
|
|
# Secrets
|
|
**/appsettings.Development.json
|
|
**/secrets.json
|
|
**/.env*
|