feat: Add Docker support with production and development configurations for backend and frontend

This commit is contained in:
MayaTheShy
2026-02-16 00:08:49 -05:00
parent a6edc0934c
commit 30647fca50
9 changed files with 580 additions and 1 deletions

46
.dockerignore Normal file
View File

@@ -0,0 +1,46 @@
# Docker ignore patterns
# Node modules
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Build outputs
dist/
build/
# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Git
.git/
.gitignore
# Documentation (not needed in container)
*.md
!README.md
# Test files
*.test.js
*.spec.js
coverage/
# Logs
*.log
logs/