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
389 B
Docker
Raw Normal View History

2015-07-05 05:53:58 +00:00
#
# Dockerfile for youtube-dl
#
2022-08-19 09:48:12 +00:00
FROM python:3-alpine
2021-11-17 03:33:02 +00:00
MAINTAINER EasyPi Software Foundation
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 \
2022-08-19 09:48:12 +00:00
&& pip3 install --no-cache-dir youtube-dl \
&& youtube-dl --version
2015-07-05 05:53:58 +00:00
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]