Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit b4cc2a1

Browse files
authored
Add dotnet arm64 support (#1325)
1 parent 4e97709 commit b4cc2a1

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

containers/dotnet-fsharp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| *Contributors* | The VS Code Team, F# team |
1010
| *Categories* | Languages |
1111
| *Definition type* | Dockerfile |
12-
| *Published image architecture(s)* | x86-64 |
12+
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bullseye` variants |
1313
| *Works in Codespaces* | Yes |
1414
| *Container host OS support* | Linux, macOS, Windows |
1515
| *Container OS* | Ubuntu |

containers/dotnet-postgres/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| *Contributors* | [Berkays](https://github.com/Berkays) |
1010
| *Categories* | Core, Languages |
1111
| *Definition type* | Docker Compose |
12-
| *Published image architecture(s)* | x86-64 |
12+
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bullseye` variants|
1313
| *Available image variants* | [See C# (.NET) definition](../dotnet). |
1414
| *Works in Codespaces* | Yes |
1515
| *Container host OS support* | Linux, macOS, Windows |

containers/dotnet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
| *Definition type* | Dockerfile |
1212
| *Published images* | mcr.microsoft.com/vscode/devcontainers/dotnet |
1313
| *Available image variants* | 3.1 / 3.1-focal, 5.0 / 5.0-focal, 6.0 /6.0-bullseye, 6.0-focal, 5.0-bullseye, 3.1-bullseye ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/dotnet/tags/list)) |
14-
| *Published image architecture(s)* | x86-64 |
14+
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bullseye` variants |
1515
| *Works in Codespaces* | Yes |
1616
| *Container host OS support* | Linux, macOS, Windows |
1717
| *Container OS* | Ubuntu (`-focal`), Debian (`-bullseye`) |

containers/dotnet/definition-manifest.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
77
"tags": [
88
"dotnet:${VERSION}-${VARIANT}"
99
],
10+
"architectures": {
11+
"6.0-focal": ["linux/amd64"],
12+
"6.0-bullseye-slim": ["linux/amd64", "linux/arm64"],
13+
"5.0-focal": ["linux/amd64"],
14+
"5.0-bullseye-slim": ["linux/amd64", "linux/arm64"],
15+
"3.1-focal": ["linux/amd64"],
16+
"3.1-bullseye": ["linux/amd64", "linux/arm64"]
17+
},
1018
"variantTags": {
1119
"6.0-bullseye-slim": [
1220
"dotnet:${VERSION}-6.0",

0 commit comments

Comments
 (0)