Added FFMPeg and brotli

This commit is contained in:
Cronocide 2023-10-23 20:53:57 -06:00
parent 26599bc70c
commit 644d96eb1a
Signed by: Cronocide
GPG Key ID: 2CB7D4B8DEB3198E

View File

@ -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.description="gallery-dl, in Docker"
LABEL org.opencontainers.image.licenses=GPL-2.0-only 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 COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt RUN pip3 install -r requirements.txt
# Run gallery-dl # Run gallery-dl
ENTRYPOINT [ "/usr/bin/tini", "--", "gallery-dl" ] ENTRYPOINT [ "/usr/bin/tini", "--", "gallery-dl" ]