1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/youtube/youtube-dl/Dockerfile
2022-08-19 17:48:12 +08:00

20 lines
389 B
Docker

#
# Dockerfile for youtube-dl
#
FROM python:3-alpine
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
openssl \
aria2 \
&& pip3 install --no-cache-dir youtube-dl \
&& youtube-dl --version
WORKDIR /data
ENTRYPOINT ["youtube-dl"]
CMD ["--help"]