1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-18 04:58:52 +02:00

20 lines
374 B
Docker
Raw Normal View History

2015-07-05 13:53:58 +08: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"]