From 501abddd7d9eef20c14be97ee3f44e28725bc0d5 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 15 May 2025 21:51:15 +0200 Subject: [PATCH] Bump docker base image - python 3.13 - ffmpeg 7.1.1 --- Dockerfile.base | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.base b/Dockerfile.base index 44ea9883..0a64ba9c 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -4,7 +4,7 @@ # This image forms the base for the final image and is not meant to be used directly # NOTE that the dev add-on is also based on this base image -FROM python:3.12-alpine3.21 +FROM python:3.13-alpine3.21 RUN set -x \ && apk add --no-cache \ @@ -21,8 +21,8 @@ RUN set -x \ snapcast # Get static ffmpeg builds from https://hub.docker.com/r/mwader/static-ffmpeg/ -COPY --from=mwader/static-ffmpeg:7.1 /ffmpeg /usr/local/bin/ -COPY --from=mwader/static-ffmpeg:7.1 /ffprobe /usr/local/bin/ +COPY --from=mwader/static-ffmpeg:7.1.1 /ffmpeg /usr/local/bin/ +COPY --from=mwader/static-ffmpeg:7.1.1 /ffprobe /usr/local/bin/ # Copy widevine client files to container RUN mkdir -p /usr/local/bin/widevine_cdm -- 2.34.1