From 803471b914dc294c489fe9cc02a53a8cae6bca94 Mon Sep 17 00:00:00 2001 From: Cipher Vance Date: Sun, 31 Aug 2025 12:14:21 -0500 Subject: [PATCH] chore(docker): switch base image to python:3.11-slim-bookworm to fix apt 404s --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7d08d00..88ff350 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as a base -FROM python:3.11-slim-buster +FROM python:3.11-slim-bookworm # Set working directory WORKDIR /app