Skip to content

Commit d2d187f

Browse files
authored
Servicing updates for May 2024 OOB Release for .NET 7 and .NET 8 (#5514)
2 parents a3f99f9 + 0d696a2 commit d2d187f

File tree

206 files changed

+1035
-1035
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+1035
-1035
lines changed

README.aspnet.md

Lines changed: 83 additions & 83 deletions
Large diffs are not rendered by default.

README.runtime-deps.md

Lines changed: 61 additions & 61 deletions
Large diffs are not rendered by default.

README.runtime.md

Lines changed: 63 additions & 63 deletions
Large diffs are not rendered by default.

README.sdk.md

Lines changed: 41 additions & 41 deletions
Large diffs are not rendered by default.

manifest.versions.json

Lines changed: 64 additions & 64 deletions
Large diffs are not rendered by default.

src/aspire-dashboard/8.0/cbl-mariner-distroless/amd64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN dotnet_aspire_version=8.0.0 \
1919

2020

2121
# Aspire Dashboard image
22-
FROM $REPO:8.0.5-cbl-mariner2.0-distroless-extra-amd64
22+
FROM $REPO:8.0.6-cbl-mariner2.0-distroless-extra-amd64
2323

2424
WORKDIR /app
2525
COPY --from=installer /app .

src/aspire-dashboard/8.0/cbl-mariner-distroless/arm64v8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN dotnet_aspire_version=8.0.0 \
1919

2020

2121
# Aspire Dashboard image
22-
FROM $REPO:8.0.5-cbl-mariner2.0-distroless-extra-arm64v8
22+
FROM $REPO:8.0.6-cbl-mariner2.0-distroless-extra-arm64v8
2323

2424
WORKDIR /app
2525
COPY --from=installer /app .
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
ARG REPO=mcr.microsoft.com/dotnet/runtime
2-
FROM $REPO:7.0.19-alpine3.18-amd64
2+
FROM $REPO:7.0.20-alpine3.18-amd64
33

44
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set
55
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information.
66

77
# ASP.NET Core version
8-
ENV ASPNET_VERSION=7.0.19
8+
ENV ASPNET_VERSION=7.0.20
99

1010
# Install ASP.NET Core
1111
RUN wget -O aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-x64.tar.gz \
12-
&& aspnetcore_sha512='4d469585d06256cf207b077961e920ea3a654e32fb984b72c3a11203874c84b9a4da0f20ddd3e3df40509a372482b20d69d81c72539bfff02345635c896b7efe' \
12+
&& aspnetcore_sha512='a80f31193af70d556e8d026d39d79863c8389b065fe0778e7b4360f7d1f6d36503ba52736c40e74a716c3c30500b185816ed60d79b06ae295754b67374a1fa45' \
1313
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
1414
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \
1515
&& rm aspnetcore.tar.gz
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
ARG REPO=mcr.microsoft.com/dotnet/runtime
2-
FROM $REPO:7.0.19-alpine3.18-arm32v7
2+
FROM $REPO:7.0.20-alpine3.18-arm32v7
33

44
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set
55
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information.
66

77
# ASP.NET Core version
8-
ENV ASPNET_VERSION=7.0.19
8+
ENV ASPNET_VERSION=7.0.20
99

1010
# Install ASP.NET Core
1111
RUN wget -O aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-arm.tar.gz \
12-
&& aspnetcore_sha512='f4fc9e3454f19078d3dc8e02e4e630ec73f196f071c9a3eef48efec905f4ebea8c96d67410fab1d769f5e169938e4fd6056b05d03f720dd494d6d3ad3a29799c' \
12+
&& aspnetcore_sha512='ca84e0eff052d45b7fa9afd8a68f1d56264155b507881105d206969922057bf332895a3c3a2a1702648e46712f022574d93ae187c8fd2610f8392909568abf56' \
1313
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
1414
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \
1515
&& rm aspnetcore.tar.gz
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
ARG REPO=mcr.microsoft.com/dotnet/runtime
2-
FROM $REPO:7.0.19-alpine3.18-arm64v8
2+
FROM $REPO:7.0.20-alpine3.18-arm64v8
33

44
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set
55
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information.
66

77
# ASP.NET Core version
8-
ENV ASPNET_VERSION=7.0.19
8+
ENV ASPNET_VERSION=7.0.20
99

1010
# Install ASP.NET Core
1111
RUN wget -O aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-arm64.tar.gz \
12-
&& aspnetcore_sha512='b7680432ed7347cd8c6d66c9491401c1386f4b0af395d22130460ef13215c3a80181a001d7445e8e19d0ea702bd4d6f0907c3caf7ec8614f69cacb7dd3e99eb8' \
12+
&& aspnetcore_sha512='65406e1714a3117daa342b3fd0dbcd5c3214315611eacbbd8580827f69a07a9480530320ba40692a3d6dbff832d929a1420079f1db30ca3fd67a6fd035149d04' \
1313
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
1414
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \
1515
&& rm aspnetcore.tar.gz

0 commit comments

Comments
 (0)