From 68daac3c1fda92a1b7b4001f9b0b978aa6b4896d Mon Sep 17 00:00:00 2001 From: latenighthackathon Date: Mon, 30 Mar 2026 11:35:57 -0500 Subject: [PATCH] fix(docker): exclude .venv and dev artifacts from Docker build context Add .venv, .ruff_cache, .mypy_cache, .env, *.egg-info, and .DS_Store to .dockerignore to prevent build context bloat and accidental secret inclusion when using direct docker build. Signed-off-by: latenighthackathon --- .dockerignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.dockerignore b/.dockerignore index 8d42c6b17..1d369f539 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,3 +4,9 @@ node_modules *.pyc __pycache__ .pytest_cache +.venv +.ruff_cache +.mypy_cache +.env +*.egg-info +.DS_Store