From 3567ff3e26612ba26cace2696ac14f52da581a16 Mon Sep 17 00:00:00 2001 From: Mateusz Lach Date: Mon, 22 Jan 2024 08:59:03 +0100 Subject: [PATCH] update checksums --- tracer/build/_build/docker/alpine.dockerfile | 2 +- tracer/build/_build/docker/debian.dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tracer/build/_build/docker/alpine.dockerfile b/tracer/build/_build/docker/alpine.dockerfile index 5f52fc768..c5134aab0 100644 --- a/tracer/build/_build/docker/alpine.dockerfile +++ b/tracer/build/_build/docker/alpine.dockerfile @@ -44,7 +44,7 @@ FROM base as tester # Install .NET Core runtimes using install script RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \ && echo "SHA256: $(sha256sum dotnet-install.sh)" \ - && echo "4f699579f6171f04fb70829ad9cc5958e7db52e6da8da5df2db43ebba76a61d6 dotnet-install.sh" | sha256sum -c \ + && echo "ff2ff47318ffff0af9a6395ca6308b54376fba8c97a3a5eba3e848b0caf17b58 dotnet-install.sh" | sha256sum -c \ && chmod +x ./dotnet-install.sh \ && ./dotnet-install.sh --runtime aspnetcore --version 2.1.30 --install-dir /usr/share/dotnet --no-path \ && ./dotnet-install.sh --runtime aspnetcore --version 3.1.31 --install-dir /usr/share/dotnet --no-path \ diff --git a/tracer/build/_build/docker/debian.dockerfile b/tracer/build/_build/docker/debian.dockerfile index 022d11372..a9db02ceb 100644 --- a/tracer/build/_build/docker/debian.dockerfile +++ b/tracer/build/_build/docker/debian.dockerfile @@ -46,7 +46,7 @@ RUN apt-get update \ # Install the .NET SDK RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \ && echo "SHA256: $(sha256sum dotnet-install.sh)" \ - && echo "4f699579f6171f04fb70829ad9cc5958e7db52e6da8da5df2db43ebba76a61d6 dotnet-install.sh" | sha256sum -c \ + && echo "ff2ff47318ffff0af9a6395ca6308b54376fba8c97a3a5eba3e848b0caf17b58 dotnet-install.sh" | sha256sum -c \ && chmod +x ./dotnet-install.sh \ && ./dotnet-install.sh --version $DOTNETSDK_VERSION --install-dir /usr/share/dotnet \ && rm ./dotnet-install.sh \ @@ -79,7 +79,7 @@ RUN if [ "$(uname -m)" = "x86_64" ]; \ fi \ && curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \ && echo "SHA256: $(sha256sum dotnet-install.sh)" \ - && echo "4f699579f6171f04fb70829ad9cc5958e7db52e6da8da5df2db43ebba76a61d6 dotnet-install.sh" | sha256sum -c \ + && echo "ff2ff47318ffff0af9a6395ca6308b54376fba8c97a3a5eba3e848b0caf17b58 dotnet-install.sh" | sha256sum -c \ && chmod +x ./dotnet-install.sh \ && ./dotnet-install.sh --runtime $NETCORERUNTIME2_1 --version 2.1.30 --install-dir /usr/share/dotnet --no-path \ && ./dotnet-install.sh --runtime aspnetcore --version 3.1.31 --install-dir /usr/share/dotnet --no-path \