From 6996550430acc6b502c32266475c7f6534cd10e5 Mon Sep 17 00:00:00 2001 From: istegner Date: Sun, 6 Mar 2022 06:28:14 +1000 Subject: [PATCH] [Docker] Switched to yt-dlp and python3 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 15e0b65..9157f6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ FROM adoptopenjdk:8-jdk-hotspot as deps WORKDIR /EternalJukebox -RUN curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl \ +RUN curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/youtube-dl \ && chmod a+rx /usr/local/bin/youtube-dl\ && apt-get update \ - && apt-get install ffmpeg gettext python -y \ + && apt-get install ffmpeg gettext python3 -y \ && apt-get clean \ && touch hikari.properties