From f82021c60721e17d2c41294fc13bf79f7268be08 Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Fri, 7 Oct 2022 02:15:46 +0100 Subject: [PATCH] Install ffmpeg in Docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3b5a7da..e638996 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,8 @@ RUN go build -o hkbi cmd/hkbi/main.go FROM debian:bullseye LABEL org.opencontainers.image.source="https://github.com/w4/hkbi" +ARG DEBIAN_FRONTEND=noninteractive +RUN apt-get update && apt-get -y install ffmpeg && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY --from=build /build/hkbi /app/hkbi CMD ["/app/hkbi", "/data/config.toml"] -- libgit2 1.7.2