From ca05da06f69166ad63c784fba3a7b0d1cde0a353 Mon Sep 17 00:00:00 2001 From: kev Date: Fri, 19 Aug 2022 17:48:12 +0800 Subject: [PATCH] update youtube-dl (FIX #141) --- youtube/youtube-dl/Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/youtube/youtube-dl/Dockerfile b/youtube/youtube-dl/Dockerfile index 9bb3391..e326e70 100644 --- a/youtube/youtube-dl/Dockerfile +++ b/youtube/youtube-dl/Dockerfile @@ -2,7 +2,7 @@ # Dockerfile for youtube-dl # -FROM python:3.9-alpine +FROM python:3-alpine MAINTAINER EasyPi Software Foundation RUN set -xe \ @@ -10,10 +10,8 @@ RUN set -xe \ ffmpeg \ openssl \ aria2 \ - && pip3 install --no-cache-dir youtube-dl - -# Try to run it so we know it works -RUN youtube-dl --version + && pip3 install --no-cache-dir youtube-dl \ + && youtube-dl --version WORKDIR /data