From a7b063805148c4835de0c687ffd5424f96ac8839 Mon Sep 17 00:00:00 2001 From: Joshua Moore <102399896+joshuabmoore@users.noreply.github.com> Date: Sun, 10 Aug 2025 09:30:31 +1000 Subject: [PATCH] Update Dockerfile to newer linux dist slim-buster is now deprecated, switch to slim-bookworm --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb40fd6..12e9a08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Debian linux distribution with python 3.9 -FROM --platform=linux/amd64 python:3.9-slim-buster +FROM --platform=linux/amd64 python:3.9-slim-bookworm # Set the working directory WORKDIR /pyspi_project