mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
43c6b914a2
changed youtube_dl to yt-dlp and combined install line Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
5 lines
128 B
Docker
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" ] |