Skip to content

Commit 60d6f70

Browse files
authored
Update .NET 10 images to support RC (#1579)
* Update .NET 10 images to support RC * Respond to PR feedback * Update README
1 parent 6338e57 commit 60d6f70

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

src/dotnet/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
| *Categories* | Core, Languages |
1010
| *Image type* | Dockerfile |
1111
| *Published images* | mcr.microsoft.com/devcontainers/dotnet |
12-
| *Available image variants* | 10.0-preview /10.0-preview-trixie, 9.0 /9.0-bookworm, 8.0 /8.0-bookworm, 10.0-preview-noble, 9.0-noble, 8.0-noble, 8.0-jammy ([full list](https://mcr.microsoft.com/v2/devcontainers/dotnet/tags/list)) |
13-
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `trixie`, `bookworm`, `bullseye`, `noble`, `jammy` variants |
12+
| *Available image variants* | 10.0, 9.0 /9.0-bookworm, 8.0 /8.0-bookworm, 10.0-noble, 9.0-noble, 8.0-noble, 8.0-jammy ([full list](https://mcr.microsoft.com/v2/devcontainers/dotnet/tags/list)) |
13+
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bookworm`, `bullseye`, `noble`, `jammy` variants |
1414
| *Container host OS support* | Linux, macOS, Windows |
15-
| *Container OS* | Ubuntu (`-focal`, `-jammy`, `-noble`), Debian (`-trixie`, `-bullseye`, `-bookworm`) |
15+
| *Container OS* | Ubuntu (`-focal`, `-jammy`, `-noble`), Debian (`-bullseye`, `-bookworm`) |
1616
| *Languages, platforms* | .NET, .NET Core, C# |
1717

1818
See **[history](history)** for information on the contents of published images.
@@ -22,7 +22,7 @@ See **[history](history)** for information on the contents of published images.
2222
You can directly reference pre-built versions of `Dockerfile` by using the `image` property in `.devcontainer/devcontainer.json` or updating the `FROM` statement in your own `Dockerfile` to one of the following. An example `Dockerfile` is included in this repository.
2323

2424
- `mcr.microsoft.com/devcontainers/dotnet` (latest)
25-
- `mcr.microsoft.com/devcontainers/dotnet:10.0-preview` (or `10.0-preview-trixie`, `10.0-preview-noble` to pin to an OS version)
25+
- `mcr.microsoft.com/devcontainers/dotnet:10.0` (or `10.0-noble` to pin to an OS version)
2626
- `mcr.microsoft.com/devcontainers/dotnet:9.0` (or `9.0-bookworm`, `9.0-noble` to pin to an OS version)
2727
- `mcr.microsoft.com/devcontainers/dotnet:8.0` (or `8.0-bookworm`, `8.0-noble`, `8.0-jammy` to pin to an OS version)
2828

src/dotnet/manifest.json

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"version": "1.5.4",
33
"variants": [
4-
"10.0-preview-trixie-slim",
5-
"10.0-preview-noble",
4+
"10.0-noble",
65
"9.0-bookworm-slim",
76
"9.0-noble",
87
"8.0-bookworm-slim",
@@ -16,11 +15,7 @@
1615
"dotnet:${VERSION}-${VARIANT}"
1716
],
1817
"architectures": {
19-
"10.0-preview-trixie-slim": [
20-
"linux/amd64",
21-
"linux/arm64"
22-
],
23-
"10.0-preview-noble": [
18+
"10.0-noble": [
2419
"linux/amd64",
2520
"linux/arm64"
2621
],
@@ -46,12 +41,9 @@
4641
]
4742
},
4843
"variantTags": {
49-
"10.0-preview-trixie-slim": [
50-
"dotnet:${VERSION}-10.0-preview-trixie"
51-
],
52-
"10.0-preview-noble": [
53-
"dotnet:${VERSION}-10.0-preview",
54-
"dotnet:${VERSION}-10.0-preview-noble"
44+
"10.0-noble": [
45+
"dotnet:${VERSION}-10.0",
46+
"dotnet:${VERSION}-10.0-noble"
5547
],
5648
"9.0-bookworm-slim": [
5749
"dotnet:${VERSION}-9.0",

0 commit comments

Comments
 (0)