1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/youtube/youtube-dl/Dockerfile
2018-10-04 21:19:36 +03:00

20 lines
381 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 \
aria2 \
&& pip3 install youtube-dl==2018.09.26
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]