From b3465354c6edacf875753b53e98601160397d05d Mon Sep 17 00:00:00 2001 From: bilby91 Date: Fri, 12 Jun 2026 14:02:26 -0300 Subject: [PATCH] devcontainer: pin prebuild base to bookworm The rolling base:debian tag now resolves to trixie (Debian 13), and the docker-in-docker feature's Moby apt packages have no trixie repo yet, so the prebuild failed with "Unsupported distribution version 'trixie'". Pin to bookworm (Debian 12) until docker-in-docker supports trixie. Co-Authored-By: Claude Opus 4.8 --- .devcontainer/devcontainer-build.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer-build.json b/.devcontainer/devcontainer-build.json index c9a3035..18041b5 100644 --- a/.devcontainer/devcontainer-build.json +++ b/.devcontainer/devcontainer-build.json @@ -1,6 +1,9 @@ { "name": "devcontainer-build", - "image": "mcr.microsoft.com/devcontainers/base:debian", + // Pinned to bookworm (Debian 12): the rolling `:debian` tag now resolves to + // trixie (Debian 13), which the docker-in-docker feature's Moby apt + // packages don't yet support ("Unsupported distribution version 'trixie'"). + "image": "mcr.microsoft.com/devcontainers/base:bookworm", // Features to add to the dev container. More info: https://containers.dev/features. "features": {