From 8692056e41725eb8c2caeb2014f8d3c48462b7a7 Mon Sep 17 00:00:00 2001 From: mm503 <182180598+mm503@users.noreply.github.com> Date: Fri, 12 Jun 2026 15:51:42 -0500 Subject: [PATCH] Bump Alpine to 1.24 yt-dlp started requiring deno 2.3.0 at a minimum. Ref: https://github.com/yt-dlp/yt-dlp/releases/tag/2026.06.09 Alpine 1.22 provides 2.3.1-r2 Alpine 1.23 provides 2.3.1-r5 Alpine 1.24 provides 2.7.4-r2 I bumped Alpine to 1.24 to ensure continuous support. This change also updates ffmpeg from 6.1.2 to 8.1.1 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fd7f33b0..09b249cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ RUN make build RUN wget -O /usr/bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp && \ chmod a+rwx /usr/bin/yt-dlp -# Alpine 3.22 will go EOL on 2027-05-01 -FROM alpine:3.22 +# Alpine 3.24 will go EOL on 2028-05-01 +FROM alpine:3.24 WORKDIR /app