/ .dockerignore
.dockerignore
1 # Python artifacts 2 **/__pycache__ 3 **/*.pyc 4 **/*.pyo 5 **/*.pyd 6 *.egg-info 7 .pytest_cache 8 .mypy_cache 9 .ruff_cache 10 .coverage 11 htmlcov 12 13 # Build outputs 14 dist/ 15 build/ 16 17 # Git 18 .git 19 .github 20 .gitignore 21 .gitattributes 22 23 # Tests (not shipped in image) 24 tests/ 25 26 # Docs (not needed inside the image) 27 docs/ 28 29 # Editors / OS 30 .vscode 31 .idea 32 .DS_Store 33 *.swp 34 35 # Environment 36 .env 37 .env.* 38 .venv 39 venv 40 41 # Docker itself 42 .dockerignore 43 Dockerfile