From b40f640fa1a92e8eac6ae16c435ebbc9b16dff87 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 2 Jun 2026 15:23:03 +0000 Subject: [PATCH] build(capture): add .dockerignore to keep stale bridge build/ out of image context MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A native deltacast-bridge build leaves services/capture/deltacast-bridge/build/ with a CMakeCache.txt pinned to the host path. When copied into the Docker build context it conflicts with the in-image cmake step and fails the capture image build. Exclude build artifacts from the context. 🤖 Generated with Claude Code --- services/capture/.dockerignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 services/capture/.dockerignore diff --git a/services/capture/.dockerignore b/services/capture/.dockerignore new file mode 100644 index 0000000..9e6950c --- /dev/null +++ b/services/capture/.dockerignore @@ -0,0 +1,7 @@ +# Build artifacts that must never enter the Docker build context — a stale +# CMakeCache.txt from a native bridge build breaks the in-image cmake step +# ("CMakeCache.txt directory is different / source does not match"). +deltacast-bridge/build/ +node_modules/ +*.bak +*.log