From 8d5df62b414b35e5bd0fb9ac66c50ee78215ee2f Mon Sep 17 00:00:00 2001 From: Clint Branham Date: Tue, 24 Mar 2026 10:51:27 -0500 Subject: [PATCH] fix(ci): add .dockerignore to prevent sending 250MB build context The Dockerfile.test stages only install packages (no COPY), but the build context changed from tests/infrastructure/ to repo root. Without a .dockerignore, Docker sends the entire repo (250MB) to the daemon before building, causing CI to hang. Co-Authored-By: Claude Opus 4.6 (1M context) --- .dockerignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..ac48f09 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +# The Dockerfile.test build stages only install packages — no COPY needed. +# Exclude everything to keep the build context minimal. +*