# Maree-CareFlow — backend/.dockerignore
# Explicitly exclude secrets, credentials, and build artefacts from the Docker
# build context. Prevents accidental inclusion of sensitive files in image layers.

# Environment / secrets — NEVER include in image
.env
.env.*
*.pem
*.key
secrets/
jwt_private*
jwt_public*

# Python build artefacts (regenerated in container)
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
build/
.eggs/
*.egg

# Test / coverage artefacts
.pytest_cache/
htmlcov/
.coverage
coverage.xml
*.lcov

# Type checking
.mypy_cache/
.ruff_cache/

# Version control
.git/
.gitignore

# IDE / editor
.vscode/
.idea/
*.swp
*.swo

# OS artefacts
.DS_Store
Thumbs.db
