1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/youtube/youtube-dl/Dockerfile

19 lines
335 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 \
&& pip3 install youtube-dl
2015-07-05 07:53:58 +02:00
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]