File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-jammy
4
4
RUN apt-get update \
5
5
&& apt-get -y install ca-certificates curl \
6
6
&& install -m 0755 -d /etc/apt/keyrings \
7
- && curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc \
7
+ && curl -k - fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc \
8
8
&& chmod a+r /etc/apt/keyrings/docker.asc \
9
9
&& echo \
10
10
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
@@ -13,7 +13,7 @@ RUN apt-get update \
13
13
&& apt-get update && apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
14
14
15
15
# .NET
16
- RUN curl -LO https://dot.net/v1/dotnet-install.sh --output ./dotnet-install.sh \
16
+ RUN curl -k - LO https://dot.net/v1/dotnet-install.sh --output ./dotnet-install.sh \
17
17
&& chmod +x ./dotnet-install.sh \
18
18
&& ./dotnet-install.sh --channel 9.0 \
19
19
&& ./dotnet-install.sh --channel 8.0 --runtime aspnetcore \
You can’t perform that action at this time.
0 commit comments