docker-images/dotnet-qa.dockerfile

10 lines
297 B
Plaintext
Raw Normal View History

2023-11-14 19:45:05 +00:00
FROM mcr.microsoft.com/dotnet/sdk:8.0
2023-08-15 00:32:26 +00:00
2023-12-01 20:54:26 +00:00
RUN apt-get update && apt-get install -y openjdk-17-jre-headless
2023-08-15 01:36:01 +00:00
2023-08-15 02:09:52 +00:00
RUN dotnet tool install --global dotnet-sonarscanner
2023-08-15 00:32:26 +00:00
RUN dotnet tool install --global coverlet.console
RUN dotnet tool install --global dotnet-coverage
2023-08-15 02:09:52 +00:00
ENV PATH="${PATH}:/root/.dotnet/tools"