1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00
gallery-dl/Dockerfile

8 lines
248 B
Docker
Raw Normal View History

2023-11-19 16:34:43 +01:00
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" ]