Sanarqube scaner for .net projects with nodejs
590
6.0
FROM mcr.microsoft.com/dotnet/sdk:6.0
RUN apt-get update
RUN apt-get install -y openjdk-17-jre nodejs
RUN apt install -y npm
RUN dotnet tool install --global dotnet-sonarscanner
ENV PATH="${PATH}:/root/.dotnet/tools"
WORKDIR /app
7.0
FROM mcr.microsoft.com/dotnet/sdk:8.0
RUN apt-get update
RUN apt-get install -y default-jre nodejs
RUN apt install -y npm
RUN dotnet tool install --global dotnet-sonarscanner
ENV PATH="${PATH}:/root/.dotnet/tools"
WORKDIR /app
8.0
FROM mcr.microsoft.com/dotnet/sdk:8.0
RUN apt-get update
RUN apt-get install -y default-jre nodejs
RUN apt install -y npm
RUN dotnet tool install --global dotnet-sonarscanner
ENV PATH="${PATH}:/root/.dotnet/tools"
WORKDIR /app
8.1
Image built as multiplatform
Content type
Image
Digest
sha256:7bbaac665…
Size
519.5 MB
Last updated
6 months ago
docker pull itband/dotnet_sonarqube:10.0