Skip to content

Commit fc717d0

Browse files
authored
Merge pull request #26 from pjoiner/DockerFileFixes
Updated dockerfiles to 7.0
2 parents a20f424 + 1794ef9 commit fc717d0

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
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 6.0.100
45+
ENV DOTNET_SDK_VERSION 7.0.100
4646

47-
RUN dotnet_sdk_version=6.0.100 \
47+
RUN dotnet_sdk_version=7.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='cb0d174a79d6294c302261b645dba6a479da8f7cf6c1fe15ae6998bc09c5e0baec810822f9e0104e84b0efd51fdc0333306cb2a0a6fcdbaf515a8ad8cf1af25b' \
49+
&& dotnet_sha512='0a2e74486357a3ee16abb551ecd828836f90d8744d6e2b6b83556395c872090d9e5166f92a8d050331333d07d112c4b27e87100ba1af86cac8a37f1aee953078' \
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 \

NuGet.config

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<solution>
4-
<add key="disableSourceControlIntegration" value="true" />
5-
</solution>
63
<packageSources>
7-
<clear />
4+
<add key="dotnet-experimental" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json" />
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
86
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
97
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
108
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
119
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
1210
<add key="dotnet5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
1311
<add key="MachineLearning" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/MachineLearning/nuget/v3/index.json" />
14-
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
1512
</packageSources>
16-
<disabledPackageSources />
1713
</configuration>

0 commit comments

Comments
 (0)