Add .dockerignore for optimized Docker builds
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
0b7b0d0498
commit
cbde6eede5
|
|
@ -1,27 +1,21 @@
|
||||||
# Git
|
node_modules
|
||||||
.git
|
.git
|
||||||
.gitignore
|
.gitignore
|
||||||
|
|
||||||
# Development
|
|
||||||
node_modules
|
|
||||||
.next
|
|
||||||
.cache
|
|
||||||
|
|
||||||
# Documentation
|
|
||||||
README.md
|
|
||||||
CLAUDE.md
|
|
||||||
*.md
|
*.md
|
||||||
|
.env*
|
||||||
# IDE
|
Dockerfile
|
||||||
.idea
|
docker-compose*.yml
|
||||||
|
.dockerignore
|
||||||
|
backlog
|
||||||
|
.next
|
||||||
|
out
|
||||||
|
.cache
|
||||||
|
dist
|
||||||
|
build
|
||||||
|
coverage
|
||||||
|
.github
|
||||||
.vscode
|
.vscode
|
||||||
*.swp
|
.idea
|
||||||
|
__pycache__
|
||||||
# OS
|
*.pyc
|
||||||
.DS_Store
|
.pytest_cache
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
# Environment (keep .env.example)
|
|
||||||
.env
|
|
||||||
.env.local
|
|
||||||
.env*.local
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue