From c95e1c67bd1b12bbd7bc8549236f5f4f74e5e831 Mon Sep 17 00:00:00 2001 From: Florent Chehab Date: Fri, 3 Jul 2026 12:09:15 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F(summary)=20update=20ffmpeg?= =?UTF-8?q?=20to=208.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update ffmpeg to 8.1.2 inside summary docker image. Maintenance task. --- CHANGELOG.md | 1 + src/summary/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cd7cee9..99c728e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to - ♻️(env) refactor env variables handling - 🚸(frontend) use "Advanced" instead of "Premium" in the sidepanel - ♿️(frontend) make fullscreen share warning keyboard accessible #1459 +- ⬆️(summary) update docker alpine to 3.24 & ffmpeg to 8.1.2 #1471 ### Fixed diff --git a/src/summary/Dockerfile b/src/summary/Dockerfile index e8103a4f..84c8c52f 100644 --- a/src/summary/Dockerfile +++ b/src/summary/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.13-alpine3.24 AS base # Install ffmpeg for audio/video processing (format conversion, extraction, compression) # See summary/core/file_service.py for usage. -RUN apk add --no-cache "ffmpeg=8.0.1-r1" +RUN apk add --no-cache "ffmpeg=8.1.2-r0" FROM base AS builder