From 2b7c00260a5455b7a567b4b0866557d7c49285c6 Mon Sep 17 00:00:00 2001 From: Damien Baty Date: Thu, 23 Apr 2026 17:29:36 +0200 Subject: [PATCH] Dockerfile: Bump Python version Let's use the latest stable Python Docker image, and not a Docker image that uses a version of Python that reached its end of life 6 months ago. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e3ef27beb..3708ed88f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9 +FROM python:3.14 COPY . /app RUN cd /app && pip install -e .