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

20 lines
374 B
Docker
Raw Normal View History

2015-07-05 05:53:58 +00:00
#
# Dockerfile for youtube-dl
#
FROM alpine
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U ca-certificates \
ffmpeg \
python \
&& rm -rf /var/cache/apk/* \
&& wget -O- https://bootstrap.pypa.io/get-pip.py | python \
&& pip install youtube-dl \
&& mkdir -p /data
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]