build(capture): add .dockerignore to keep stale bridge build/ out of image context

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
This commit is contained in:
Claude 2026-06-02 15:23:03 +00:00
parent a2790601c9
commit b40f640fa1

View file

@ -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