gallery-dl-docker/Dockerfile
dependabot[bot] a40d22c771
Bump python from 3.11.1-slim-buster to 3.11.2-slim-buster
Bumps python from 3.11.1-slim-buster to 3.11.2-slim-buster.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-14 00:11:09 +00:00

13 lines
431 B
Docker

FROM python:3.11.2-slim-buster
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" ]