Manualne pobieranie yt-dlp bo yt rozjebał pobieranie we wcześniejszej wersji

This commit is contained in:
Patryk Koreń
2026-02-01 14:18:18 +01:00
parent d60cd75786
commit f9f0ba9b1f

View File

@@ -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