1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00

update youtube-dl (FIX #141)

This commit is contained in:
kev 2022-08-19 17:48:12 +08:00
parent fd0f973be8
commit ca05da06f6

@ -2,7 +2,7 @@
# Dockerfile for youtube-dl # Dockerfile for youtube-dl
# #
FROM python:3.9-alpine FROM python:3-alpine
MAINTAINER EasyPi Software Foundation MAINTAINER EasyPi Software Foundation
RUN set -xe \ RUN set -xe \
@ -10,10 +10,8 @@ RUN set -xe \
ffmpeg \ ffmpeg \
openssl \ openssl \
aria2 \ aria2 \
&& pip3 install --no-cache-dir youtube-dl && pip3 install --no-cache-dir youtube-dl \
&& youtube-dl --version
# Try to run it so we know it works
RUN youtube-dl --version
WORKDIR /data WORKDIR /data