From 61400fba1ae1a4cef9adb83d619ffbc33cf86a6d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 10 Sep 2026 18:52:19 -0700 Subject: [PATCH] Fix Docker release builds on main with Bookworm base image Apply the Dockerfile fix from 0.65.x to avoid expired Bullseye security repository metadata. Original fix: https://github.com/simonw/datasette/commit/91fa786de9b41347d5077781482bd50713cd4b6b --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a8f06cf..58287dd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.0-slim-bullseye as build +FROM python:3.11-slim-bookworm AS build # Version of Datasette to install, e.g. 0.55 # docker build . -t datasette --build-arg VERSION=0.55