1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 01:08:37 +00:00
dockerfiles/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"]