1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-26 05:27:31 +02:00

19 lines
336 B
Docker
Raw Normal View History

2015-07-05 13:53:58 +08:00
#
# Dockerfile for youtube-dl
#
FROM alpine
2016-05-01 09:06:20 +08:00
MAINTAINER kev <noreply@easypi.info>
2015-07-05 13:53:58 +08:00
2016-06-16 22:14:54 +08:00
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
2016-06-18 13:02:18 +08:00
openssl \
2016-11-05 14:07:22 +08:00
python3 \
&& pip3 install youtube-dl
2015-07-05 13:53:58 +08:00
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]