File tree Expand file tree Collapse file tree 8 files changed +9
-9
lines changed Expand file tree Collapse file tree 8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN apk add --no-cache \
11
11
# Install the .NET SDK
12
12
ARG DOTNET_SDK_VERSION=8.0
13
13
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
14
- RUN wget https://dot.net /v1/dotnet-install.sh -O dotnet-install.sh \
14
+ RUN wget https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -O dotnet-install.sh \
15
15
&& bash dotnet-install.sh --channel ${DOTNET_SDK_VERSION} --install-dir /usr/share/dotnet --verbose \
16
16
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \
17
17
&& rm dotnet-install.sh \
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN apk add --no-cache \
11
11
# Install the .NET SDK
12
12
ARG DOTNET_SDK_VERSION=8.0
13
13
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
14
- RUN wget https://dot.net /v1/dotnet-install.sh -O dotnet-install.sh \
14
+ RUN wget https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -O dotnet-install.sh \
15
15
&& bash dotnet-install.sh --channel ${DOTNET_SDK_VERSION} --install-dir /usr/share/dotnet --verbose \
16
16
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \
17
17
&& rm dotnet-install.sh \
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ RUN . /etc/skia-env \
60
60
# Install the .NET SDK
61
61
ARG DOTNET_SDK_VERSION=8.0
62
62
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
63
- RUN curl https://dot.net /v1/dotnet-install.sh -L -o dotnet-install.sh \
63
+ RUN curl https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -L -o dotnet-install.sh \
64
64
&& bash dotnet-install.sh --channel ${DOTNET_SDK_VERSION} --install-dir /usr/share/dotnet --verbose \
65
65
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \
66
66
&& rm dotnet-install.sh \
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ RUN apt-get update \
13
13
# Install the .NET SDK
14
14
ARG DOTNET_SDK_VERSION=8.0
15
15
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
16
- RUN curl https://dot.net /v1/dotnet-install.sh -L -o dotnet-install.sh \
16
+ RUN curl https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -L -o dotnet-install.sh \
17
17
&& bash dotnet-install.sh --channel ${DOTNET_SDK_VERSION} --install-dir /usr/share/dotnet --verbose \
18
18
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \
19
19
&& rm dotnet-install.sh \
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ RUN apt-get update \
13
13
# Install the .NET SDK
14
14
ARG DOTNET_SDK_VERSION=8.0
15
15
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
16
- RUN curl https://dot.net /v1/dotnet-install.sh -L -o dotnet-install.sh \
16
+ RUN curl https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -L -o dotnet-install.sh \
17
17
&& bash dotnet-install.sh --channel ${DOTNET_SDK_VERSION} --install-dir /usr/share/dotnet --verbose \
18
18
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \
19
19
&& rm dotnet-install.sh \
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ RUN . /etc/skia-env \
66
66
# Install the .NET SDK
67
67
ARG DOTNET_SDK_VERSION=8.0
68
68
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
69
- RUN curl https://dot.net /v1/dotnet-install.sh -L -o dotnet-install.sh \
69
+ RUN curl https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -L -o dotnet-install.sh \
70
70
&& bash dotnet-install.sh --channel ${DOTNET_SDK_VERSION} --install-dir /usr/share/dotnet --verbose \
71
71
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \
72
72
&& rm dotnet-install.sh \
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ RUN . /etc/skia-env \
66
66
# Install the .NET SDK
67
67
ARG DOTNET_SDK_VERSION=8.0
68
68
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
69
- RUN curl https://dot.net /v1/dotnet-install.sh -L -o dotnet-install.sh \
69
+ RUN curl https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -L -o dotnet-install.sh \
70
70
&& bash dotnet-install.sh --channel ${DOTNET_SDK_VERSION} --install-dir /usr/share/dotnet --verbose \
71
71
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \
72
72
&& rm dotnet-install.sh \
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ if (Test-Path $dotnetDll) {
11
11
Write-Host " .NET already installed."
12
12
} else {
13
13
if ($IsMacOS -or $IsLinux ) {
14
- $url = " https://dot.net /v1/dotnet-install.sh"
14
+ $url = " https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh"
15
15
} else {
16
- $url = " https://dot.net /v1/dotnet-install.ps1"
16
+ $url = " https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.ps1"
17
17
}
18
18
19
19
Write-Host " Downloading .NET Installer..."
You can’t perform that action at this time.
0 commit comments