Expand .dockerignore with standard entries

This commit is contained in:
Oliver Hofmann 2026-04-29 09:34:19 +02:00
parent bd0dc0478f
commit 6e704da86b

View File

@ -1,11 +1,49 @@
.git/ # Python
__pycache__/
*.pyc
*.pyo
*.pyd
.venv/ .venv/
venv/ venv/
*.egg-info/
.pytest_cache/
# Tests
backend/tests/
# Environment & secrets
.env .env
*.env.local
# Databases
*.db
*.sqlite3
# Logs
logs/
*.log
# IDE
.idea/
.vscode/
# Git
.git/
.gitignore
# Frontend
frontend/node_modules/ frontend/node_modules/
frontend/dist/ frontend/dist/
backend/__pycache__/
backend/**/__pycache__/ # Docker
backend/*.pyc docker-compose.yml
backend/test.db .dockerignore
backend/tests/
# Docs
*.md
# Dev & build scripts
run_dev.py
build_push.sh
start.sh
test_api.sh