From 1d4dfd2a7287f503ad000d11db70b62e4d591efc 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. Added ARG VERSION for completeness --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9044f8c..0ad5ab9 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 \