From 67a86a1cf6adec69e619de52dfa9e5e2bf1c5aee Mon Sep 17 00:00:00 2001 From: Adrien Beaudouin Date: Tue, 15 Aug 2023 03:36:01 +0200 Subject: [PATCH] add dotnet docker --- dotnet-qa.dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dotnet-qa.dockerfile b/dotnet-qa.dockerfile index 24a8ae5..8c7c1b9 100644 --- a/dotnet-qa.dockerfile +++ b/dotnet-qa.dockerfile @@ -1,10 +1,10 @@ FROM mcr.microsoft.com/dotnet/sdk:7.0 +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/* + 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 \ - openjdk-17-jre-headless \ - unzip \ - && rm -rf /var/lib/apt/lists/* \ No newline at end of file