1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/youtube/youtube-dl/Dockerfile
2016-06-18 13:02:18 +08:00

20 lines
398 B
Docker

#
# Dockerfile for youtube-dl
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
openssl \
python \
&& wget -O- https://bootstrap.pypa.io/get-pip.py | python \
&& pip install youtube-dl
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]