mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-27 02:09:06 +02:00
19 lines
335 B
Docker
19 lines
335 B
Docker
#
|
|
# Dockerfile for youtube-dl
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache ca-certificates \
|
|
ffmpeg \
|
|
openssl \
|
|
python3 \
|
|
&& pip3 install youtube-dl
|
|
|
|
WORKDIR /data
|
|
|
|
ENTRYPOINT ["youtube-dl"]
|
|
CMD ["--help"]
|