1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-25 02:04:06 +02:00
dockerfiles/youtube/youtube-dl/Dockerfile

20 lines
381 B
Docker
Raw Normal View History

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