Update Dockerfile

changed youtube_dl to yt-dlp and combined install line

Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
This commit is contained in:
Nitrousoxide
2023-11-19 11:14:24 -05:00
committed by GitHub
parent 12818ce9a5
commit 43c6b914a2

View File

@@ -1,6 +1,5 @@
FROM python:alpine
RUN python3 -m pip install -U gallery-dl
RUN python3 -m pip install -U youtube_dl
RUN python3 -m pip install -U gallery-dl yt-dlp
RUN apk update
RUN apk add ffmpeg
ENTRYPOINT [ "gallery-dl" ]