Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov committed Jan 16, 2025
1 parent c2c6cfd commit 29b0b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-jammy
RUN apt-get update \
&& apt-get -y install ca-certificates curl \
&& install -m 0755 -d /etc/apt/keyrings \
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc \
&& curl -k -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc \
&& chmod a+r /etc/apt/keyrings/docker.asc \
&& echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
Expand All @@ -13,7 +13,7 @@ RUN apt-get update \
&& apt-get update && apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

# .NET
RUN curl -LO https://dot.net/v1/dotnet-install.sh --output ./dotnet-install.sh \
RUN curl -k -LO https://dot.net/v1/dotnet-install.sh --output ./dotnet-install.sh \
&& chmod +x ./dotnet-install.sh \
&& ./dotnet-install.sh --channel 9.0 \
&& ./dotnet-install.sh --channel 8.0 --runtime aspnetcore \
Expand Down

0 comments on commit 29b0b9d

Please sign in to comment.