From f9f0ba9b1f907fde4aa904ef9f9083d981aea60e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Kore=C5=84?= Date: Sun, 1 Feb 2026 14:18:18 +0100 Subject: [PATCH] =?UTF-8?q?Manualne=20pobieranie=20yt-dlp=20bo=20yt=20rozj?= =?UTF-8?q?eba=C5=82=20pobieranie=20we=20wcze=C5=9Bniejszej=20wersji?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6910f25..936e389 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ -FROM node:20-alpine +FROM node:22-alpine -RUN apk add --no-cache ffmpeg yt-dlp +RUN apk add --no-cache wget ffmpeg #yt-dlp +RUN wget -P /tmp https://github.com/yt-dlp/yt-dlp/releases/download/2026.01.31/yt-dlp_musllinux +RUN mv /tmp/yt-dlp_musllinux /usr/bin/yt-dlp +RUN chmod 777 /usr/bin/yt-dlp WORKDIR /app