mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-24 19:52:32 +01:00
8 lines
248 B
Docker
8 lines
248 B
Docker
FROM python:alpine
|
|
RUN python3 -m pip install --no-cache-dir -U pip && \
|
|
python3 -m pip install --no-cache-dir -U gallery-dl yt-dlp
|
|
RUN apk update && \
|
|
apk add --no-cache ffmpeg && \
|
|
rm -rf /var/cache/apk/*
|
|
ENTRYPOINT [ "gallery-dl" ]
|