add dotnet docker

This commit is contained in:
Adrien Beaudouin 2023-08-15 04:09:52 +02:00
parent 67a86a1cf6
commit 0530700031

View File

@ -5,6 +5,8 @@ RUN apt-get update && apt-get install -y ca-certificates-java && apt-get install
unzip \ unzip \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN dotnet tool install --global dotnet-sonarscanner
RUN dotnet tool install --global coverlet.console RUN dotnet tool install --global coverlet.console
RUN dotnet tool install --global dotnet-coverage RUN dotnet tool install --global dotnet-coverage
RUN dotnet tool install --global dotnet-sonarscanner
ENV PATH="${PATH}:/root/.dotnet/tools"