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

20 lines
389 B
Docker
Raw Normal View History

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