-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge main to nightly for February 2025 release (#6226)
Co-authored-by: Rich Lander <[email protected]> Co-authored-by: Benjamin Petit <[email protected]> Co-authored-by: dotnet-docker-bot <[email protected]> Co-authored-by: Matt Thalman <[email protected]> Co-authored-by: Aditya Patwardhan <[email protected]> Co-authored-by: Justin Anderson <[email protected]>
- Loading branch information
Showing
303 changed files
with
1,389 additions
and
1,389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
ARG REPO=mcr.microsoft.com/dotnet/runtime | ||
FROM $REPO:8.0.12-alpine3.20-amd64 | ||
FROM $REPO:8.0.13-alpine3.20-amd64 | ||
|
||
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set | ||
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information. | ||
|
||
# ASP.NET Core version | ||
ENV ASPNET_VERSION=8.0.12 | ||
ENV ASPNET_VERSION=8.0.13 | ||
|
||
# Install ASP.NET Core | ||
RUN wget -O aspnetcore.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-x64.tar.gz \ | ||
&& aspnetcore_sha512='a7d3bae2da7b4da946851d36196d41053593af4138d1ae020ce4b9b141c7e84d53446cb0891e127983abd5e7c011d7c9d2039227dca9409d6faeb6383583389a' \ | ||
&& aspnetcore_sha512='f4992c2cbc8019378af0c8463d36c978caa943e53d49522037b802f7476ec9d82a6f69dfb2178f82f619bcedd6620ff0c1aba024760864eb0f73ce70c04fd8f9' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \ | ||
&& rm aspnetcore.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
ARG REPO=mcr.microsoft.com/dotnet/runtime | ||
FROM $REPO:8.0.12-alpine3.20-arm32v7 | ||
FROM $REPO:8.0.13-alpine3.20-arm32v7 | ||
|
||
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set | ||
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information. | ||
|
||
# ASP.NET Core version | ||
ENV ASPNET_VERSION=8.0.12 | ||
ENV ASPNET_VERSION=8.0.13 | ||
|
||
# Install ASP.NET Core | ||
RUN wget -O aspnetcore.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-arm.tar.gz \ | ||
&& aspnetcore_sha512='174189c851eb178dc7b5624b220b0a0df8acbf41c4cd73e155a9d1efd2e6ad2ad77ac719f51edbba4984e4be90763a26eebbf958c1a77ae32e26f728016511b6' \ | ||
&& aspnetcore_sha512='20a6322409e46f064f739d3948dcfa365879d3bfc1e704ec24f74accf9c8f464ac5782eac88cebf36d6732a3d45d6eff2bb4a89e39032332288de25e41065ba0' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \ | ||
&& rm aspnetcore.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
ARG REPO=mcr.microsoft.com/dotnet/runtime | ||
FROM $REPO:8.0.12-alpine3.20-arm64v8 | ||
FROM $REPO:8.0.13-alpine3.20-arm64v8 | ||
|
||
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set | ||
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information. | ||
|
||
# ASP.NET Core version | ||
ENV ASPNET_VERSION=8.0.12 | ||
ENV ASPNET_VERSION=8.0.13 | ||
|
||
# Install ASP.NET Core | ||
RUN wget -O aspnetcore.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-arm64.tar.gz \ | ||
&& aspnetcore_sha512='77ae48a34d3b9478aa11b8077f7b1d6f5ea47699f92e3dc29d05cccd16b25e023587a960d9bc2a5c25939cbb7494102ce7ae7fd6c09f597914981a5e7ed92716' \ | ||
&& aspnetcore_sha512='cec1eefebff9c3b8582417fc883cd19a5cf1741f00ed5df5e42a239398c3286f9f8e1fe6c9a65ffbd76fa95318cf23f7941f47f6132f03afbc1fafa3a48601c7' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \ | ||
&& rm aspnetcore.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
ARG REPO=mcr.microsoft.com/dotnet/runtime | ||
FROM $REPO:8.0.12-alpine3.21-amd64 | ||
FROM $REPO:8.0.13-alpine3.21-amd64 | ||
|
||
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set | ||
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information. | ||
|
||
# ASP.NET Core version | ||
ENV ASPNET_VERSION=8.0.12 | ||
ENV ASPNET_VERSION=8.0.13 | ||
|
||
# Install ASP.NET Core | ||
RUN wget -O aspnetcore.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-x64.tar.gz \ | ||
&& aspnetcore_sha512='a7d3bae2da7b4da946851d36196d41053593af4138d1ae020ce4b9b141c7e84d53446cb0891e127983abd5e7c011d7c9d2039227dca9409d6faeb6383583389a' \ | ||
&& aspnetcore_sha512='f4992c2cbc8019378af0c8463d36c978caa943e53d49522037b802f7476ec9d82a6f69dfb2178f82f619bcedd6620ff0c1aba024760864eb0f73ce70c04fd8f9' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \ | ||
&& rm aspnetcore.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
ARG REPO=mcr.microsoft.com/dotnet/runtime | ||
FROM $REPO:8.0.12-alpine3.21-arm32v7 | ||
FROM $REPO:8.0.13-alpine3.21-arm32v7 | ||
|
||
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set | ||
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information. | ||
|
||
# ASP.NET Core version | ||
ENV ASPNET_VERSION=8.0.12 | ||
ENV ASPNET_VERSION=8.0.13 | ||
|
||
# Install ASP.NET Core | ||
RUN wget -O aspnetcore.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-arm.tar.gz \ | ||
&& aspnetcore_sha512='174189c851eb178dc7b5624b220b0a0df8acbf41c4cd73e155a9d1efd2e6ad2ad77ac719f51edbba4984e4be90763a26eebbf958c1a77ae32e26f728016511b6' \ | ||
&& aspnetcore_sha512='20a6322409e46f064f739d3948dcfa365879d3bfc1e704ec24f74accf9c8f464ac5782eac88cebf36d6732a3d45d6eff2bb4a89e39032332288de25e41065ba0' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \ | ||
&& rm aspnetcore.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
ARG REPO=mcr.microsoft.com/dotnet/runtime | ||
FROM $REPO:8.0.12-alpine3.21-arm64v8 | ||
FROM $REPO:8.0.13-alpine3.21-arm64v8 | ||
|
||
# .NET globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set | ||
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information. | ||
|
||
# ASP.NET Core version | ||
ENV ASPNET_VERSION=8.0.12 | ||
ENV ASPNET_VERSION=8.0.13 | ||
|
||
# Install ASP.NET Core | ||
RUN wget -O aspnetcore.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$ASPNET_VERSION/aspnetcore-runtime-$ASPNET_VERSION-linux-musl-arm64.tar.gz \ | ||
&& aspnetcore_sha512='77ae48a34d3b9478aa11b8077f7b1d6f5ea47699f92e3dc29d05cccd16b25e023587a960d9bc2a5c25939cbb7494102ce7ae7fd6c09f597914981a5e7ed92716' \ | ||
&& aspnetcore_sha512='cec1eefebff9c3b8582417fc883cd19a5cf1741f00ed5df5e42a239398c3286f9f8e1fe6c9a65ffbd76fa95318cf23f7941f47f6132f03afbc1fafa3a48601c7' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& tar -oxzf aspnetcore.tar.gz -C /usr/share/dotnet ./shared/Microsoft.AspNetCore.App \ | ||
&& rm aspnetcore.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.