From 95477fe399e62914077e0709b6a0e6e577df69b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pobo=C5=99il?= Date: Sat, 2 Nov 2019 15:11:29 +0100 Subject: [PATCH] Removed version constrain youtube-dl is very sensitive to outdating, so it is better to have it always updated. Added test so receipe will fail if not installed correctly. --- youtube/youtube-dl/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/youtube/youtube-dl/Dockerfile b/youtube/youtube-dl/Dockerfile index 694d605..7eb973a 100644 --- a/youtube/youtube-dl/Dockerfile +++ b/youtube/youtube-dl/Dockerfile @@ -11,7 +11,10 @@ RUN set -xe \ openssl \ python3 \ aria2 \ - && pip3 install youtube-dl==2018.09.26 + && pip3 install youtube-dl + +# Try to run it so we know it works +RUN youtube-dl --version WORKDIR /data