2023-08-15 02:32:26 +02:00
|
|
|
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 \
|
2023-08-15 02:47:43 +02:00
|
|
|
openjdk-17-jre-headless \
|
2023-08-15 02:32:26 +02:00
|
|
|
unzip \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|