1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00
gallery-dl/Dockerfile
Nitrousoxide 43c6b914a2
Update Dockerfile
changed youtube_dl to yt-dlp and combined install line

Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
2023-11-19 11:14:24 -05:00

5 lines
128 B
Docker

FROM python:alpine
RUN python3 -m pip install -U gallery-dl yt-dlp
RUN apk update
RUN apk add ffmpeg
ENTRYPOINT [ "gallery-dl" ]