⬆️(summary) update ffmpeg to 8.1.2

Update ffmpeg to 8.1.2 inside summary docker image.
Maintenance task.
This commit is contained in:
Florent Chehab
2026-07-03 12:09:15 +02:00
committed by aleb_the_flash
parent f115c83752
commit c95e1c67bd
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -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