Skip to content

Commit 29b0b9d

Browse files
Fix build
1 parent c2c6cfd commit 29b0b9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-jammy
44
RUN apt-get update \
55
&& apt-get -y install ca-certificates curl \
66
&& 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 \
88
&& chmod a+r /etc/apt/keyrings/docker.asc \
99
&& echo \
1010
"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 \
1313
&& apt-get update && apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
1414

1515
# .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 \
1717
&& chmod +x ./dotnet-install.sh \
1818
&& ./dotnet-install.sh --channel 9.0 \
1919
&& ./dotnet-install.sh --channel 8.0 --runtime aspnetcore \

0 commit comments

Comments
 (0)