1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/youtube/youtube-dl/Dockerfile

20 lines
398 B
Docker
Raw Normal View History

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