1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 05:48:42 +00:00
dockerfiles/youtube/youtube-dl/Dockerfile

22 lines
421 B
Docker
Raw Normal View History

2015-07-05 05:53:58 +00:00
#
# Dockerfile for youtube-dl
#
2021-04-07 04:36:03 +00:00
FROM python:3.9-alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-07-05 05:53:58 +00:00
2016-06-16 14:14:54 +00:00
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
2016-06-18 05:02:18 +00:00
openssl \
2018-10-04 18:19:36 +00:00
aria2 \
&& pip3 install --no-cache-dir youtube-dl
# Try to run it so we know it works
RUN youtube-dl --version
2015-07-05 05:53:58 +00:00
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]