From 1c332edde8ed91895292357474af1364726725af Mon Sep 17 00:00:00 2001 From: Dymas Date: Mon, 22 Jun 2026 10:52:11 +0200 Subject: [PATCH] Install upstream yt-dlp release binary --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 09868ee..0431076 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,10 @@ RUN npm run build FROM node:20.20.0-alpine WORKDIR /spooty -RUN apk add --no-cache ffmpeg redis python3 py3-pip curl yt-dlp \ +RUN apk add --no-cache ffmpeg redis python3 py3-pip curl \ + && curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp \ + && chmod +x /usr/local/bin/yt-dlp \ + && yt-dlp --version \ && addgroup -S spooty \ && adduser -S spooty -G spooty