fix(devcontainer): use current python image and modern ENV syntax#475
Merged
Conversation
The legacy `mcr.microsoft.com/vscode/devcontainers/python:0-*` tags are no longer published, so `devcontainer up` fails with a manifest-not-found error. Switch to the current `mcr.microsoft.com/vscode/devcontainers/python` namespace. Also resolve the BuildKit `LegacyKeyValueFormat` warning by using `ENV key=value` instead of `ENV key value`. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
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.
Summary
mcr.microsoft.com/vscode/devcontainers/python:0-*tags are no longer published;devcontainer upcurrently fails withmcr.microsoft.com/vscode/devcontainers/python:0-3.11-bookworm: not found. Switch theFROMline to the currentmcr.microsoft.com/vscode/devcontainers/pythonnamespace, which is the documented active location for the Microsoft devcontainer images.LegacyKeyValueFormatwarning by usingENV SHELL=/bin/bashinstead ofENV SHELL /bin/bash.Test plan
devcontainer up --workspace-folder .succeeds and produces an image with no warnings.VARIANT=3-bullseyewas preserved as the ARG default; the devcontainer.json overrides it to3.11-bookworm).🤖 Generated with Claude Code