1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-03 00:33:55 +00:00
dockerfiles/youtube/youtube-dl/Dockerfile
2016-05-01 09:06:20 +08:00

20 lines
372 B
Docker

#
# Dockerfile for youtube-dl
#
FROM alpine
MAINTAINER kev <noreply@easypi.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"]