dockerfix
This commit is contained in:
73
.dockerignore
Normal file
73
.dockerignore
Normal file
@@ -0,0 +1,73 @@
|
||||
# 🚀 Docker ignore patterns for optimal build performance
|
||||
|
||||
# 📁 Development environments
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
.mypy_cache/
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
|
||||
# 🧪 Testing and temporary files
|
||||
tests/
|
||||
test-results/
|
||||
*_test.py
|
||||
test_*.py
|
||||
.ruff_cache/
|
||||
.pytest_cache/
|
||||
|
||||
# 📝 Documentation and metadata
|
||||
*.md
|
||||
README*
|
||||
CHANGELOG*
|
||||
LICENSE*
|
||||
docs/
|
||||
.gitignore
|
||||
.dockerignore
|
||||
|
||||
# 🔧 Development tools
|
||||
.git/
|
||||
.github/
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# 🎯 Build artifacts and cache
|
||||
dist/
|
||||
build/
|
||||
*.egg-info/
|
||||
node_modules/
|
||||
.cache/
|
||||
dump/
|
||||
|
||||
# 📊 Logs and databases
|
||||
*.log
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
dev-server.pid
|
||||
|
||||
# 🔐 Environment and secrets
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
*.key
|
||||
*.pem
|
||||
|
||||
# 🎨 Frontend development
|
||||
panel/node_modules/
|
||||
*.css.map
|
||||
*.js.map
|
||||
|
||||
# 🧹 OS and editor files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.tmp
|
||||
*.temp
|
||||
Reference in New Issue
Block a user