From f5ffd963447627a419097a74f17645e90c0efe0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Kie=C5=82kowicz?= Date: Thu, 2 Jan 2025 09:21:04 +0100 Subject: [PATCH] Update dontet-install.sh SHA256 --- docker/alpine-arm64.dockerfile | 2 +- docker/alpine-x64.dockerfile | 2 +- docker/debian-arm64.dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/alpine-arm64.dockerfile b/docker/alpine-arm64.dockerfile index e40c28b2..b67dc0f2 100644 --- a/docker/alpine-arm64.dockerfile +++ b/docker/alpine-arm64.dockerfile @@ -20,7 +20,7 @@ ENV gRPC_PluginFullPath=/usr/bin/grpc_csharp_plugin # Install older sdks using the install script RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \ && echo "SHA256: $(sha256sum dotnet-install.sh)" \ - && echo "c169af55281cd1e58cdbe3ec95c2480cfb210ee460b3ff1421745c8f3236b263 dotnet-install.sh" | sha256sum -c \ + && echo "48e5763854527aca84bf2c9b1542a22ec490e85657725eac8dc18eb0ed809413 dotnet-install.sh" | sha256sum -c \ && chmod +x ./dotnet-install.sh \ && ./dotnet-install.sh -v 8.0.404 --install-dir /usr/share/dotnet --no-path \ && rm dotnet-install.sh diff --git a/docker/alpine-x64.dockerfile b/docker/alpine-x64.dockerfile index 10a4113d..14438afa 100644 --- a/docker/alpine-x64.dockerfile +++ b/docker/alpine-x64.dockerfile @@ -20,7 +20,7 @@ ENV gRPC_PluginFullPath=/usr/bin/grpc_csharp_plugin # Install older sdks using the install script RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \ && echo "SHA256: $(sha256sum dotnet-install.sh)" \ - && echo "c169af55281cd1e58cdbe3ec95c2480cfb210ee460b3ff1421745c8f3236b263 dotnet-install.sh" | sha256sum -c \ + && echo "48e5763854527aca84bf2c9b1542a22ec490e85657725eac8dc18eb0ed809413 dotnet-install.sh" | sha256sum -c \ && chmod +x ./dotnet-install.sh \ && ./dotnet-install.sh -v 8.0.404 --install-dir /usr/share/dotnet --no-path \ && rm dotnet-install.sh diff --git a/docker/debian-arm64.dockerfile b/docker/debian-arm64.dockerfile index cf627fd4..f20b6337 100644 --- a/docker/debian-arm64.dockerfile +++ b/docker/debian-arm64.dockerfile @@ -9,7 +9,7 @@ RUN apt-get update && \ # Install older sdks using the install script as there are no arm64 SDK packages. RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \ && echo "SHA256: $(sha256sum dotnet-install.sh)" \ - && echo "c169af55281cd1e58cdbe3ec95c2480cfb210ee460b3ff1421745c8f3236b263 dotnet-install.sh" | sha256sum -c \ + && echo "48e5763854527aca84bf2c9b1542a22ec490e85657725eac8dc18eb0ed809413 dotnet-install.sh" | sha256sum -c \ && chmod +x ./dotnet-install.sh \ && ./dotnet-install.sh -v 8.0.404 --install-dir /usr/share/dotnet --no-path \ && rm dotnet-install.sh