From 644d96eb1a0cd02f83926edfbfc0753a5315d7f9 Mon Sep 17 00:00:00 2001 From: Cronocide Date: Mon, 23 Oct 2023 20:53:57 -0600 Subject: [PATCH] Added FFMPeg and brotli --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4ad5ff0..3905806 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,13 @@ LABEL org.opencontainers.image.source=https://github.com/brandonmoss-99/gallery- LABEL org.opencontainers.image.description="gallery-dl, in Docker" LABEL org.opencontainers.image.licenses=GPL-2.0-only -RUN apt-get update && apt-get install tini +RUN apt-get update && apt-get install \ + tini \ + ffmpeg \ + brotli COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt # Run gallery-dl -ENTRYPOINT [ "/usr/bin/tini", "--", "gallery-dl" ] \ No newline at end of file +ENTRYPOINT [ "/usr/bin/tini", "--", "gallery-dl" ]