🏡 index : ~doyle/hkbi.git

author Jordan Doyle <jordan@doyle.la> 2022-10-07 1:15:46.0 +00:00:00
committer Jordan Doyle <jordan@doyle.la> 2022-10-07 1:15:46.0 +00:00:00
commit
f82021c60721e17d2c41294fc13bf79f7268be08 [patch]
tree
abd3a06a8e94af6f43a7b374893d083f9b13553a
parent
89e7eae14c426277e4ff8ae26594aa27eee9bbf0
download
f82021c60721e17d2c41294fc13bf79f7268be08.tar.gz

Install ffmpeg in Docker image



Diff

 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"]