2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-31 01:57:22 +01:00
Files
dockerfiles_vimagick/youtube/youtube-dl/Dockerfile
2021-04-07 12:36:03 +08:00

22 lines
406 B
Docker

#
# Dockerfile for youtube-dl
#
FROM python:3.9-alpine
MAINTAINER kev <noreply@easypi.pro>
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
openssl \
aria2 \
&& pip3 install youtube-dl
# Try to run it so we know it works
RUN youtube-dl --version
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]