Merge pull request 'refactor: Update .dockerignore for improved clarity and organization' (#12) from ph4 into prod

Reviewed-on: #12
This commit is contained in:
mo 2025-06-01 15:58:00 +02:00
commit 0cdc47d0d2

View File

@ -1,30 +1,61 @@
# Git files # Git
.git .git
.gitignore .gitignore
# Virtual environment # Python
.venv
venv/
env/
ENV/
*.env # Ignore local .env files within the backend directory if any
# Python cache
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
*.so
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# IDE files # Virtual Environment
venv/
ENV/
# IDE
.idea/ .idea/
.vscode/ .vscode/
*.swp
*.swo
# Test artifacts # Logs
logs/
*.log
# Local development
.env
.env.local
.env.*.local
# Docker
Dockerfile*
docker-compose*
.dockerignore
# Tests
tests/
test/
.pytest_cache/ .pytest_cache/
.coverage
htmlcov/ htmlcov/
.coverage*
# Other build/temp files # Documentation
*.egg-info/ docs/
dist/ *.md
build/ !README.md
*.db # e.g., sqlite temp dbs