# Shared Docker build context exclusions.
# Keep this file focused on broad, safe exclusions because it applies to
# every Docker build in this repository.

__pycache__/
.venv/
build/
dist/

# Version control
.git/
.gitignore

# Environment and secrets
.env
.env.*

# Private keys and credentials
*.pem
*.key
*.p12
*.pfx
credentials*.json

# Tool caches
.mypy_cache/
.ruff_cache/
.pytest_cache/
htmlcov/

# IDE and editor files
.vscode/
.idea/
