From 68ba2b941814e03135bf7e64257e3ca1fdd7a8cd Mon Sep 17 00:00:00 2001 From: Rogan Date: Tue, 13 Oct 2020 22:46:41 +0800 Subject: [PATCH] change jre to 11.0.8 --- Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 48b1b64..71ad9b5 100755 --- a/Dockerfile +++ b/Dockerfile @@ -5,20 +5,22 @@ COPY *.go ./ COPY vendor ./vendor/ RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o drone-sonar -FROM openjdk:8-jre-alpine +FROM openjdk:11.0.8-jre ARG SONAR_VERSION=4.5.0.2216 ARG SONAR_SCANNER_CLI=sonar-scanner-cli-${SONAR_VERSION} ARG SONAR_SCANNER=sonar-scanner-${SONAR_VERSION} -RUN apk add --no-cache --update nodejs curl +RUN apt-get update \ + && apt-get install -y nodejs curl \ + && apt-get clean + COPY --from=build /go/src/github.com/aosapps/drone-sonar-plugin/drone-sonar /bin/ WORKDIR /bin RUN curl https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/${SONAR_SCANNER_CLI}.zip -so /bin/${SONAR_SCANNER_CLI}.zip RUN unzip ${SONAR_SCANNER_CLI}.zip \ - && rm ${SONAR_SCANNER_CLI}.zip \ - && apk del curl + && rm ${SONAR_SCANNER_CLI}.zip ENV PATH $PATH:/bin/${SONAR_SCANNER}/bin