From a3926fb0e4892da28c0bd91faa3b6a36a1c9d79b Mon Sep 17 00:00:00 2001 From: Sebastian Schindler Date: Tue, 21 Nov 2023 01:42:25 +0100 Subject: [PATCH] fix: replaced youtube-dl by ytdlp --- voice/teaspeak/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voice/teaspeak/Dockerfile b/voice/teaspeak/Dockerfile index cc46233..26a4154 100644 --- a/voice/teaspeak/Dockerfile +++ b/voice/teaspeak/Dockerfile @@ -37,7 +37,7 @@ RUN apt update \ RUN apt install -y ffmpeg curl python3 iproute2 libjemalloc2 tini # Install latest youtube-dl -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 RUN chmod a+rx /usr/local/bin/youtube-dl RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1000