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

19 lines
362 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 \
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"]