2023-06-13 00:00:21 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install tini
|
|
|
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
|
|
|
|
# Run gallery-dl
|
|
|
|
ENTRYPOINT [ "/usr/bin/tini", "--", "gallery-dl" ]
|