Skip to content

Commit

Permalink
Add .NET 8 and 9 variants of Azure Linux build image (#1350)
Browse files Browse the repository at this point in the history
  • Loading branch information
richlander authored Feb 7, 2025
1 parent 3a00662 commit 3f693e5
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/azurelinux/3.0/net8.0/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-azurelinux3.0

RUN tdnf install -y \
nodejs \
shadow-utils \
&& tdnf clean all
6 changes: 6 additions & 0 deletions src/azurelinux/3.0/net9.0/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM mcr.microsoft.com/dotnet/runtime-deps:9.0-azurelinux3.0

RUN tdnf install -y \
nodejs \
shadow-utils \
&& tdnf clean all
26 changes: 26 additions & 0 deletions src/azurelinux/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,32 @@
}
]
},
{
"platforms": [
{
"architecture": "amd64",
"dockerfile": "src/azurelinux/3.0/net8.0/build",
"os": "linux",
"osVersion": "azurelinux3.0",
"tags": {
"azurelinux-3.0-net8.0-build-amd64": {}
}
}
]
},
{
"platforms": [
{
"architecture": "amd64",
"dockerfile": "src/azurelinux/3.0/net9.0/build",
"os": "linux",
"osVersion": "azurelinux3.0",
"tags": {
"azurelinux-3.0-net9.0-build-amd64": {}
}
}
]
},
{
"platforms": [
{
Expand Down

0 comments on commit 3f693e5

Please sign in to comment.