Skip to content

Commit 850b545

Browse files
authored
Merge pull request #28 from pjoiner/DockerFileFixes
Rolled back to dotnet 6
2 parents 3b00cff + e3179a4 commit 850b545

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ RUN apt-get update \
4242
# Install .NET Core SDK
4343

4444
# When updating the SDK version, the sha512 value a few lines down must also be updated.
45-
ENV DOTNET_SDK_VERSION 7.0.100
45+
ENV DOTNET_SDK_VERSION 6.0.100
4646

47-
RUN dotnet_sdk_version=7.0.100 \
47+
RUN dotnet_sdk_version=6.0.100 \
4848
&& curl -SL --output dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/$dotnet_sdk_version/dotnet-sdk-$dotnet_sdk_version-linux-x64.tar.gz \
49-
&& dotnet_sha512='0a2e74486357a3ee16abb551ecd828836f90d8744d6e2b6b83556395c872090d9e5166f92a8d050331333d07d112c4b27e87100ba1af86cac8a37f1aee953078' \
49+
&& dotnet_sha512='cb0d174a79d6294c302261b645dba6a479da8f7cf6c1fe15ae6998bc09c5e0baec810822f9e0104e84b0efd51fdc0333306cb2a0a6fcdbaf515a8ad8cf1af25b' \
5050
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
5151
&& mkdir -p /usr/share/dotnet \
5252
&& tar -ozxf dotnet.tar.gz -C /usr/share/dotnet \

0 commit comments

Comments
 (0)