add dotnet docker

This commit is contained in:
Adrien Beaudouin 2023-08-15 02:32:26 +02:00
parent 47989b5bcf
commit 1283d90012

10
dotnet-qa.dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0
RUN dotnet tool install --global coverlet.console
RUN dotnet tool install --global dotnet-coverage
RUN dotnet tool install --global dotnet-sonarscanner
RUN apt-get update && apt-get install -y \
openjdk-17-jre \
unzip \
&& rm -rf /var/lib/apt/lists/*