From 9ea4a94ce0205cd786c05568054e30e4b6ac0b30 Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Tue, 10 Mar 2026 13:01:13 -0500 Subject: [PATCH] fix(devcontainer): bump to v3 Python image to fix Yarn GPG key failure The v2 base image (mcr.microsoft.com/devcontainers/python:2-3.14-trixie) ships with a Yarn Classic APT repository whose GPG key has expired, causing apt-get update to fail during feature installation and breaking the entire devcontainer build. Bump to the v3 image (python:3-3.14-trixie, published 2026-01-30) which no longer includes the Yarn APT repo, resolving the issue without any additional workarounds. Ref: devcontainers/images#1797 --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index db0fd0fec..fff64bcdb 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "Python 3", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/python:2-3.14-trixie", + "image": "mcr.microsoft.com/devcontainers/python:3-3.14-trixie", "features": { "ghcr.io/devcontainers/features/copilot-cli:1": {}, "ghcr.io/devcontainers/features/github-cli:1": {},