docker-images/dotnet-qa.dockerfile

13 lines
395 B
Plaintext
Raw Normal View History

2023-08-15 02:32:26 +02:00
FROM mcr.microsoft.com/dotnet/sdk:7.0
2023-08-15 03:36:01 +02:00
RUN apt-get update && apt-get install -y ca-certificates-java && apt-get install -y \
openjdk-17-jre-headless \
unzip \
&& rm -rf /var/lib/apt/lists/*
2023-08-15 04:09:52 +02:00
RUN dotnet tool install --global dotnet-sonarscanner
2023-08-15 02:32:26 +02:00
RUN dotnet tool install --global coverlet.console
RUN dotnet tool install --global dotnet-coverage
2023-08-15 04:09:52 +02:00
ENV PATH="${PATH}:/root/.dotnet/tools"