mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
20 lines
389 B
Docker
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"]
|