fix(capture): correct Dockerfile copy path for framecache source
This commit is contained in:
parent
7a89c83ff4
commit
d193b84466
1 changed files with 1 additions and 2 deletions
|
|
@ -23,8 +23,7 @@ FROM debian:bookworm AS fc-pipe-builder
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
build-essential cmake libmicrohttpd-dev \
|
build-essential cmake libmicrohttpd-dev \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
COPY fc_client /fc-src/client
|
COPY services/framecache /fc-src
|
||||||
COPY services/capture/deltacast-bridge /fc-src/src/slot.h # (copy from existing location)
|
|
||||||
RUN cmake -S /fc-src -B /fc-src/build \
|
RUN cmake -S /fc-src -B /fc-src/build \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
&& cmake --build /fc-src/build --target fc_pipe -j$(nproc)
|
&& cmake --build /fc-src/build --target fc_pipe -j$(nproc)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue