# ── Aquilia .dockerignore ─────────────────────────────────────
# Generated by: aq deploy dockerfile

# Version control
.git
.gitignore

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
ENV/
.eggs/
*.egg-info/
*.egg
dist/
build/

# Aquilia runtime (regenerated)
runtime/
prediction_logs/

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

# OS
.DS_Store
Thumbs.db

# Tests & docs (not needed in production image)
tests/
docs/
benchmarks/
examples/
*.md
!README.md

# Docker files (avoid recursive context)
Dockerfile*
docker-compose*
.dockerignore

# CI/CD
.github/
.gitlab-ci.yml
Makefile

# Kubernetes manifests (not needed in image)
k8s/
deploy/
