From 33378f16fb05351586bdca7ed9486b2fc023cd75 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Mon, 29 Dec 2025 17:58:28 -0600 Subject: [PATCH] feat(infra): add `.dockerignore` for codespaces (#34533) --- .dockerignore | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .dockerignore 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