From fcd287027fa2fa322987b469120d0a532ef60024 Mon Sep 17 00:00:00 2001 From: nyc_tk Date: Mon, 15 Dec 2025 22:17:28 -0500 Subject: [PATCH] Updating Docker for ffmpeg 7.0 - requires Alpine v3.23 community packages --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9044f8c..1307df3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.20 AS build +FROM alpine:3.23 AS build ARG VERSION @@ -21,14 +21,14 @@ RUN /src/out/OF\ DL --non-interactive || true && \ mv /src/updated_config.conf /src/config.conf -FROM alpine:3.20 AS final +FROM alpine:3.23 AS final # Install dependencies RUN apk --no-cache --repository community add \ bash \ tini \ dotnet8-runtime \ - ffmpeg \ + ffmpeg7 \ udev \ ttf-freefont \ chromium \