File tree 2 files changed +3
-3
lines changed
src/unix/docker/dockerfiles/build
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ RUN apk add --upgrade --no-cache \
24
24
curl \
25
25
icu-libs
26
26
27
- RUN wget -O dotnet.tar.gz https://dotnetcli.azureedge.net /dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-sdk-$DOTNET_SDK_VERSION-linux-musl-x64.tar.gz \
27
+ RUN wget -O dotnet.tar.gz https://builds.dotnet.microsoft.com /dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-sdk-$DOTNET_SDK_VERSION-linux-musl-x64.tar.gz \
28
28
&& dotnet_sha512='38e63bc2e94b5dfbaa5ffcc31e96eaaf9889a86ae03b2bba72ed73434d79857d56566345c65a20c7a5e62f444b8f13a3ed6a3e7e568a3c34c837cfcecd1ca68f' \
29
29
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
30
30
&& mkdir -p /usr/share/dotnet \
Original file line number Diff line number Diff line change @@ -32,14 +32,14 @@ RUN apt-get update \
32
32
33
33
RUN \
34
34
# Install .NET 6 SDK
35
- curl -fSL --output dotnet.tar.gz https://dotnetcli.azureedge.net /dotnet/Sdk/$DOTNET_6_SDK_VERSION/dotnet-sdk-$DOTNET_6_SDK_VERSION-linux-x64.tar.gz \
35
+ curl -fSL --output dotnet.tar.gz https://builds.dotnet.microsoft.com /dotnet/Sdk/$DOTNET_6_SDK_VERSION/dotnet-sdk-$DOTNET_6_SDK_VERSION-linux-x64.tar.gz \
36
36
&& dotnet_sha512='a9cd1e5ccc3c5d847aca2ef21dd145f61c6b18c4e75a3c2fc9aed592c6066d511b8b658c54c2cd851938fe5aba2386e5f6f51005f6406b420110c0ec408a8401' \
37
37
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
38
38
&& mkdir -p /usr/share/dotnet \
39
39
&& tar -oxzf dotnet.tar.gz -C /usr/share/dotnet \
40
40
&& rm dotnet.tar.gz \
41
41
# Install .NET 7 SDK
42
- && curl -fSL --output dotnet.tar.gz https://dotnetcli.azureedge.net /dotnet/Sdk/$DOTNET_7_SDK_VERSION/dotnet-sdk-$DOTNET_7_SDK_VERSION-linux-x64.tar.gz \
42
+ && curl -fSL --output dotnet.tar.gz https://builds.dotnet.microsoft.com /dotnet/Sdk/$DOTNET_7_SDK_VERSION/dotnet-sdk-$DOTNET_7_SDK_VERSION-linux-x64.tar.gz \
43
43
&& dotnet_sha512='20b8e02979328e4c4a14493f7791ed419aabd0175233db80cd60e2c004b829b3e8301281ea86b27ba818372473accf5a6d553e5354c54917c8e84d25f5855caa' \
44
44
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
45
45
&& mkdir -p /usr/share/dotnet \
You can’t perform that action at this time.
0 commit comments