1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00
gallery-dl/Dockerfile

6 lines
129 B
Docker
Raw Normal View History

2023-11-19 16:34:43 +01:00
FROM python:alpine
RUN python3 -m pip install -U gallery-dl yt-dlp
2023-11-19 16:34:43 +01:00
RUN apk update
RUN apk add ffmpeg
ENTRYPOINT [ "gallery-dl" ]