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" ] |