
- Multi-stage Dockerfile with Caddy web server - Production Astro config bypasses plugin conflicts - Optimized Caddyfile with security headers and caching - Docker-compose.yml with proper caddy-docker-proxy labels - Comprehensive .dockerignore for efficient builds - Health check endpoints and proper container security - Tested and working: builds in 19.6s, serves HTTP 200 Ready for deployment with caddy-docker-proxy\! 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
69 lines
810 B
Plaintext
69 lines
810 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
.astro/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Documentation and project files (not needed in container)
|
|
README.md
|
|
CLAUDE.md
|
|
PROJECT-CONTEXT.md
|
|
COMPONENTS-GUIDE.md
|
|
AYFKM-*.md
|
|
CONTINUATION-PROMPT.md
|
|
INTERMEDIATE-GUIDE-PLAN.md
|
|
NEW-CONVERSATION-PROMPT.md
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/ |