Quiet the download of the dotnet sdk

This commit is contained in:
Kienan Stewart 2022-10-09 22:43:15 -04:00
parent 66c20f578c
commit 28c48d7515
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ RUN apt-get install -y --allow-unauthenticated --no-install-recommends \
RUN mkdir /dotnet
WORKDIR /dotnet
RUN wget https://download.visualstudio.microsoft.com/download/pr/ede8a287-3d61-4988-a356-32ff9129079e/bdb47b6b510ed0c4f0b132f7f4ad9d5a/dotnet-sdk-6.0.101-linux-x64.tar.gz -O /root/dotnet-sdk.tar.gz
RUN wget -q https://download.visualstudio.microsoft.com/download/pr/ede8a287-3d61-4988-a356-32ff9129079e/bdb47b6b510ed0c4f0b132f7f4ad9d5a/dotnet-sdk-6.0.101-linux-x64.tar.gz -O /root/dotnet-sdk.tar.gz
RUN tar xzf /root/dotnet-sdk.tar.gz
ENV PATH="${PATH}:/dotnet"