1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/youtube/youtube-dl/Dockerfile
2017-05-08 07:05:07 +08:00

19 lines
335 B
Docker

#
# Dockerfile for youtube-dl
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
openssl \
python3 \
&& pip3 install youtube-dl
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]