.dockerignore (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# Keep the build context small and fast. .git .venv venv # Python caches / build artifacts __pycache__/ *.py[cod] *.egg-info/ .eggs/ dist/ build/ # Tooling caches .pytest_cache/ .ruff_cache/ .mypy_cache/ .coverage htmlcov/ # Local state and secrets (never baked into the image) .env data/*.db data/*.db-* # Tests are not needed at runtime tests/ # IDE / OS .idea/ .vscode/ *.swp .DS_Store Thumbs.db |