Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: adding python 3.14 to the dev container registry
  • Loading branch information
robot297 committed Oct 9, 2025
commit 94723b1448db60271c4f028cb8c11d02d7e2335e
3 changes: 2 additions & 1 deletion src/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| *Categories* | Core, Languages |
| *Image type* | Dockerfile |
| *Published image* | mcr.microsoft.com/devcontainers/python |
| *Available image variants* | 3 / 3-trixie, 3.9 / 3.9-trixie, 3.10 / 3.10-trixie, 3.11-trixie / 3.11, 3.12-trixie / 3.12, 3.13-trixie / 3.13, 3-bookworm, 3.9-bookworm, 3.10-bookworm, 3.11-bookworm, 3.12-bookworm, 3.13-bookworm, 3-bullseye, 3.9-bullseye, 3.10-bullseye, 3.11-bullseye, 3.12-bullseye, 3.13-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/python/tags/list)) |
| *Available image variants* | 3 / 3-trixie, 3.9 / 3.9-trixie, 3.10 / 3.10-trixie, 3.11-trixie / 3.11, 3.12-trixie / 3.12, 3.13-trixie / 3.13, 3.14, 3.14-trixie, 3-bookworm, 3.9-bookworm, 3.10-bookworm, 3.11-bookworm, 3.12-bookworm, 3.13-bookworm, 3.14-bookworm, 3-bullseye, 3.9-bullseye, 3.10-bullseye, 3.11-bullseye, 3.12-bullseye, 3.13-bullseye, 3.14-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/python/tags/list)) |
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bookworm`, and `bullseye` variants |
| *Container Host OS Support* | Linux, macOS, Windows |
| *Container OS* | Debian |
Expand All @@ -29,6 +29,7 @@ You can directly reference [pre-built](https://containers.dev/implementors/refer
- `mcr.microsoft.com/devcontainers/python:3.11` (or `3.11-trixie`, `3.11-bookworm`, `3.11-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/python:3.12` (or `3.12-trixie`, `3.12-bookworm`, `3.12-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/python:3.13` (or `3.13-trixie`, `3.13-bookworm`, `3.13-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/python:3.14` (or `3.14-trixie`, `3.14-bookworm`, `3.14-bullseye` to pin to an OS version)

Refer to [this guide](https://containers.dev/guide/dockerfile) for more details.

Expand Down
19 changes: 17 additions & 2 deletions src/python/manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"version": "2.0.2",
"variants": [
"3.14-trixie",
"3.13-trixie",
"3.12-trixie",
"3.11-trixie",
"3.10-trixie",
"3.9-trixie",
"3.9-trixie",
"3.14-bookworm",
"3.13-bookworm",
"3.12-bookworm",
"3.11-bookworm",
"3.10-bookworm",
"3.9-bookworm",
"3.14-bullseye",
"3.13-bullseye",
"3.12-bullseye",
"3.11-bullseye",
Expand All @@ -21,6 +24,10 @@
"latest": "3.13-trixie",
"rootDistro": "debian",
"architectures": {
"3.14-trixie": [
"linux/amd64",
"linux/arm64"
],
"3.13-trixie": [
"linux/amd64",
"linux/arm64"
Expand All @@ -40,7 +47,11 @@
"3.9-trixie": [
"linux/amd64",
"linux/arm64"
],
],
"3.14-bookworm": [
"linux/amd64",
"linux/arm64"
],
"3.13-bookworm": [
"linux/amd64",
"linux/arm64"
Expand All @@ -61,6 +72,10 @@
"linux/amd64",
"linux/arm64"
],
"3.14-bullseye": [
"linux/amd64",
"linux/arm64"
],
"3.13-bullseye": [
"linux/amd64",
"linux/arm64"
Expand Down