gallery-dl-docker/Dockerfile

17 lines
458 B
Docker
Raw Normal View History

FROM python:3.11.4-slim-buster
2023-01-15 23:32:12 +00:00
LABEL org.opencontainers.image.source=https://github.com/brandonmoss-99/gallery-dl-docker
LABEL org.opencontainers.image.description="gallery-dl, in Docker"
LABEL org.opencontainers.image.licenses=GPL-2.0-only
2023-10-24 02:53:57 +00:00
RUN apt-get update && apt-get install \
tini \
ffmpeg \
brotli
2023-01-15 23:32:12 +00:00
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
# Run gallery-dl
2023-10-24 02:53:57 +00:00
ENTRYPOINT [ "/usr/bin/tini", "--", "gallery-dl" ]