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

20 lines
398 B
Docker
Raw Normal View History

2015-07-05 07:53:58 +02:00
#
# Dockerfile for youtube-dl
#
FROM alpine
2016-05-01 03:06:20 +02:00
MAINTAINER kev <noreply@easypi.info>
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-06-16 16:14:54 +02:00
python \
2015-07-05 07:53:58 +02:00
&& wget -O- https://bootstrap.pypa.io/get-pip.py | python \
2016-06-16 16:14:54 +02:00
&& pip install youtube-dl
2015-07-05 07:53:58 +02:00
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]