10 lines
297 B
Docker
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"
|