From 4ea0f3cd786616a704b0176f17ce1f83d1450830 Mon Sep 17 00:00:00 2001 From: Shrikanth Upadhayaya <shrik450@gmail.com> Date: Thu, 19 Dec 2024 14:52:09 -0500 Subject: [PATCH] Update base image to Python 3.13-bookworm In some cases, this image was running into this issue: https://github.com/python/cpython/issues/108525, possibly due to using the `slim` base. This commit both updates python to the latest stable (3.13) and siwtches to the `bookworm` base. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fa4bdab..87d337b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim +FROM python:3.13-bookworm RUN apt-get update && apt-get install -y graphviz