fix(capture): correct Dockerfile copy path for framecache source

This commit is contained in:
Wild Dragon Dev 2026-06-03 17:25:00 +00:00
parent 7a89c83ff4
commit d193b84466

View file

@ -23,8 +23,7 @@ FROM debian:bookworm AS fc-pipe-builder
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential cmake libmicrohttpd-dev \
&& rm -rf /var/lib/apt/lists/*
COPY fc_client /fc-src/client
COPY services/capture/deltacast-bridge /fc-src/src/slot.h # (copy from existing location)
COPY services/framecache /fc-src
RUN cmake -S /fc-src -B /fc-src/build \
-DCMAKE_BUILD_TYPE=Release \
&& cmake --build /fc-src/build --target fc_pipe -j$(nproc)