From 9a7dfd904537ce1bac9a29f1183b34289e4c61be Mon Sep 17 00:00:00 2001 From: Lukas Masuch Date: Fri, 14 Nov 2025 03:43:48 +0100 Subject: [PATCH 1/2] Fix docker image to support python 3.14 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a6e397b3..a0c31392 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.4 ARG PYTHON_VERSION -FROM python:${PYTHON_VERSION}-slim-bullseye as e2e_base +FROM python:${PYTHON_VERSION}-slim as e2e_base SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"] From f7698345406f57603babd95a7a9a496969be9b46 Mon Sep 17 00:00:00 2001 From: Lukas Masuch <103002573+sfc-gh-lmasuch@users.noreply.github.com> Date: Thu, 13 Nov 2025 18:51:15 -0800 Subject: [PATCH 2/2] Pin to 3.13 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a0c31392..2a39858f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.4 ARG PYTHON_VERSION -FROM python:${PYTHON_VERSION}-slim as e2e_base +FROM python:3.13-slim-bullseye as e2e_base SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"]