Skip to content

Commit

Permalink
Update to .NET 8.0.3 - security fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pocki committed Mar 25, 2024
1 parent 44ec098 commit 31c262b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ RUN apt-get update \
libgdiplus \
&& rm -rf /var/lib/apt/lists/*

ENV DOTNET_SDK_VERSION 8.0.201
ENV DOTNET_SDK_VERSION 8.0.203
# Install .NET Core SDK
RUN dotnet_sdk_version=8.0.201 \
RUN dotnet_sdk_version=8.0.203 \
&& curl -SL --output dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/$dotnet_sdk_version/dotnet-sdk-$dotnet_sdk_version-linux-x64.tar.gz \
&& dotnet_sha512='310cf54f595698435b533931b12f86d49f89d27243cf7c87a5b926e0c676b80e869aa58aaff17b5095536c432f377c67d92bf0ca8941b9d891d4b3879637d488' \
&& dotnet_sha512='78b1913b54a1a4c9f13cc2864a11540b5fd3bdf4ebb49837483e19c0906a1890f2dfcf173635a1c89714bf735cbcaa01db0f7ae90add5295da69a0638ed5e60e' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -ozxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down

0 comments on commit 31c262b

Please sign in to comment.