# .dockerignore - files to exclude from Docker build context

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv

# Jobs and data (mounted as volumes)
jobs/
data/
backups/
reports/

# Git
.git/
.gitignore

# Claude Code local settings (keep skills, exclude user preferences)
.claude/settings*.json

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

# Documentation
notes/
*.md
!CLAUDE.md
!README.md
!CHAT_CLAUDE.md

# Environment
.env
.env.local

# OS
.DS_Store
Thumbs.db

# Testing
.pytest_cache/
.coverage
htmlcov/

# Build artifacts
dist/
build/
*.egg-info/
