fix(framecache): install wget for healthcheck; make node-agent devices optional
This commit is contained in:
parent
cd67dfceea
commit
a1a0823812
2 changed files with 2 additions and 3 deletions
|
|
@ -85,8 +85,7 @@ services:
|
||||||
# /dev and /opt from the host (handled in the agent, not here) so DKMS /
|
# /dev and /opt from the host (handled in the agent, not here) so DKMS /
|
||||||
# modprobe / ldconfig affect the host kernel.
|
# modprobe / ldconfig affect the host kernel.
|
||||||
- ${REPO_DIR:-/opt/wild-dragon}:${REPO_DIR:-/opt/wild-dragon}:ro
|
- ${REPO_DIR:-/opt/wild-dragon}:${REPO_DIR:-/opt/wild-dragon}:ro
|
||||||
devices:
|
# (DeckLink devices are mounted dynamically if present)
|
||||||
- /dev/blackmagic:/dev/blackmagic
|
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
build: ./services/worker
|
build: ./services/worker
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ RUN cmake -S /src -B /build \
|
||||||
FROM debian:bookworm-slim
|
FROM debian:bookworm-slim
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
libmicrohttpd12 \
|
libmicrohttpd12 wget \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY --from=builder /build/framecache /usr/local/bin/framecache
|
COPY --from=builder /build/framecache /usr/local/bin/framecache
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue