docker-images/dotnet-qa.dockerfile
2023-12-01 21:54:26 +01:00

10 lines
297 B
Docker

FROM mcr.microsoft.com/dotnet/sdk:8.0
RUN apt-get update && apt-get install -y openjdk-17-jre-headless
RUN dotnet tool install --global dotnet-sonarscanner
RUN dotnet tool install --global coverlet.console
RUN dotnet tool install --global dotnet-coverage
ENV PATH="${PATH}:/root/.dotnet/tools"