fix(devcontainer): bump to v3 Python image to fix Yarn GPG key failure#781
Open
PureWeen wants to merge 1 commit intogithub:mainfrom
Open
fix(devcontainer): bump to v3 Python image to fix Yarn GPG key failure#781PureWeen wants to merge 1 commit intogithub:mainfrom
PureWeen wants to merge 1 commit intogithub:mainfrom
Conversation
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
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s devcontainer base image to avoid a devcontainer build failure caused by an expired Yarn Classic APT repo GPG key in the v2 Python devcontainer image.
Changes:
- Bump
.devcontainer/devcontainer.jsonbase image frommcr.microsoft.com/devcontainers/python:2-3.14-trixietomcr.microsoft.com/devcontainers/python:3-3.14-trixie.
You can also share your feedback on Copilot code review. Take the survey.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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, causingapt-get updateto fail during feature installation and breaking the entire devcontainer build.Bumps 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