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) <noreply@anthropic.com>
This commit is contained in:
Clint Branham
2026-03-24 10:51:27 -05:00
parent f21c7f84b7
commit 8d5df62b41
+3
View File
@@ -0,0 +1,3 @@
# The Dockerfile.test build stages only install packages — no COPY needed.
# Exclude everything to keep the build context minimal.
*