# Git and metadata .git .gitignore **/.gitattributes # Python bytecode and caches __pycache__ **/__pycache__ *.py[cod] *$py.class *.so .pytest_cache .mypy_cache .ruff_cache .hypothesis # Local environments (image builds its own venv) .venv venv ENV env # Secrets — never send to build context .env .env.* !.env.example # Tests and dev-only (not COPY'd by current Dockerfile; shrinks context) tests/ **/*_test.py **/*_tests.py # Documentation / planning (not needed in image) *.md !README.md # CI / editor .github .gitlab-ci.yml .idea .vscode .cursor # Large or machine-local artifacts *.pt *.pth *.onnx *.ckpt models .cache # Packaging / local installs dist build *.egg-info .eggs # Logs *.log logs