1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 01:08:37 +00:00
dockerfiles/youtube/youtube-dl/Dockerfile

20 lines
381 B
Docker
Raw Normal View History

2015-07-05 05:53:58 +00:00
#
# Dockerfile for youtube-dl
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-07-05 05:53:58 +00:00
2016-06-16 14:14:54 +00:00
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
2016-06-18 05:02:18 +00:00
openssl \
2016-11-05 06:07:22 +00:00
python3 \
2018-10-04 18:19:36 +00:00
aria2 \
&& pip3 install youtube-dl==2018.09.26
2015-07-05 05:53:58 +00:00
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]