From f70eb11db3013a53109d1e734db3f95c10ae7624 Mon Sep 17 00:00:00 2001 From: kingbri <8082010+kingbri1@users.noreply.github.com> Date: Sun, 27 Apr 2025 00:24:32 -0400 Subject: [PATCH] Docker: Use python 3.12 Ubuntu 24.04 ships with 3.12 by default. Signed-off-by: kingbri <8082010+kingbri1@users.noreply.github.com> --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 96607ee..2113e37 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ ca-certificates \ - python3.11 \ + python3.12 \ python3-pip \ && rm -rf /var/lib/apt/lists/*