You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
481 B
17 lines
481 B
FROM aosapps/drone-sonar-plugin AS base
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine
|
|
|
|
COPY --from=base /bin/drone-sonar /bin/
|
|
WORKDIR /bin
|
|
|
|
RUN apk update && apk add openjdk11-jre nodejs && rm -rf /tmp/* /var/cache/apk/*
|
|
|
|
RUN dotnet tool install --global dotnet-sonarscanner
|
|
RUN dotnet tool install --global dotnet-reportgenerator-globaltool
|
|
|
|
ENV JAVA_HOME /usr/lib/jvm/default-jvm/
|
|
ENV PATH ${PATH}:${JAVA_HOME}/bin
|
|
ENV PATH $PATH:/root/.dotnet/tools
|
|
|
|
ENTRYPOINT /bin/drone-sonar |