From bc99a62e655378f1b3ab0c2ea8af4198739e849a Mon Sep 17 00:00:00 2001 From: Ahmad Kamal <57063370+akbaig@users.noreply.github.com> Date: Sat, 8 Feb 2025 02:22:34 +0200 Subject: [PATCH] Fetch latest yt-dlp binary from github repo in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9987c42..93eef5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update -qq \ && rm -rf /var/lib/apt/lists/* # Upgrade pip, and install yt-dlp. -RUN python3 -m pip install --upgrade yt-dlp pip +RUN curl -L -o yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp && chmod +x yt-dlp && mv yt-dlp /usr/bin/ #Get latest version of composer RUN curl -sS https://getcomposer.org/installer | php \