2
0
Fork 0

yt-dlp: add Containerfile

main
Astra 2024-01-21 19:31:51 +01:00
parent 377a93f4db
commit cb29a441f5
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
FROM python:alpine
RUN apk add --update --no-cache --virtual .build-deps gcc musl-dev \
&& pip install --upgrade pip \
&& pip install pycrypto yt-dlp \
&& rm -rf ~/.cache/pip \
&& apk del .build-deps \
&& apk add --no-cache ffmpeg \
&& chmod o+w /media
RUN echo "-o /media/%(title)s.%(ext)s" > /etc/yt-dlp.conf
WORKDIR /media
ENTRYPOINT ["yt-dlp"]