diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000000..ec73567d601 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,34 @@ +# Git +.git +.github + +# Python +__pycache__ +*.pyc +*.pyo +.venv +.mypy_cache +.pytest_cache +.ruff_cache +*.egg-info +.tox + +# IDE +.idea +.vscode + +# Worktree +worktree + +# Test artifacts +.coverage +htmlcov +coverage.xml + +# Build artifacts +dist +build + +# Misc +*.log +.DS_Store