diff --git a/dotnet-qa.dockerfile b/dotnet-qa.dockerfile new file mode 100644 index 0000000..73370bf --- /dev/null +++ b/dotnet-qa.dockerfile @@ -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/* \ No newline at end of file