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:
parent
a2790601c9
commit
b40f640fa1
1 changed files with 7 additions and 0 deletions
7
services/capture/.dockerignore
Normal file
7
services/capture/.dockerignore
Normal 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
|
||||||
Loading…
Reference in a new issue