This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade SonarQube to 6.7.4 & PostgreSQL to 10.4 (#5)
- Loading branch information
1 parent
951a0d9
commit 71584ff
Showing
6 changed files
with
55 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# SonarQube 6.7.4 LTS image with bundled Scala plugins | ||
# sonar-scala 6.4.0 (https://github.com/mwz/sonar-scala) | ||
# and sonar-scala-extra 1.3.0 (https://github.com/arthepsy/sonar-scala-extra). | ||
|
||
FROM sonarqube:6.7.4-alpine | ||
|
||
ENV SONAR_SCAPEGOAT_VERSION 1.3.0 | ||
ENV SONAR_SCALA_VERSION 6.4.0 | ||
|
||
WORKDIR /opt/sonarqube/extensions/plugins | ||
RUN wget -O "sonar-scapegoat-plugin-${SONAR_SCAPEGOAT_VERSION}.jar" \ | ||
"https://github.com/arthepsy/sonar-scala-extra/releases/download/v${SONAR_SCAPEGOAT_VERSION}/sonar-scapegoat-plugin-${SONAR_SCAPEGOAT_VERSION}.jar" | ||
RUN wget -O "sonar-scala-plugin-${SONAR_SCALA_VERSION}.jar" \ | ||
"https://dl.bintray.com/mwz/maven/com/github/mwz/sonar-scala_2.12/${SONAR_SCALA_VERSION}/sonar-scala_2.12-${SONAR_SCALA_VERSION}-assembly.jar" | ||
|
||
WORKDIR $SONARQUBE_HOME | ||
ENTRYPOINT ["./bin/run.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Alpine image with bundled Scala plugins | ||
# sonar-scala 6.4.0 (https://github.com/mwz/sonar-scala) | ||
# and sonar-scala-extra 1.3.0 (https://github.com/arthepsy/sonar-scala-extra), | ||
# which can be mounted as a volume into a SonarQube container. | ||
|
||
FROM alpine:3.7 | ||
|
||
ENV SONAR_SCAPEGOAT_VERSION 1.3.0 | ||
ENV SONAR_SCALA_VERSION 6.4.0 | ||
|
||
RUN apk --no-cache add --repository http://dl-cdn.alpinelinux.org/alpine/v3.7/community wget ca-certificates | ||
|
||
WORKDIR /opt/sonarqube/extensions/plugins | ||
RUN wget -O "sonar-scapegoat-plugin-${SONAR_SCAPEGOAT_VERSION}.jar" \ | ||
"https://github.com/arthepsy/sonar-scala-extra/releases/download/v${SONAR_SCAPEGOAT_VERSION}/sonar-scapegoat-plugin-${SONAR_SCAPEGOAT_VERSION}.jar" | ||
RUN wget -O "sonar-scala-plugin-${SONAR_SCALA_VERSION}.jar" \ | ||
"https://dl.bintray.com/mwz/maven/com/github/mwz/sonar-scala_2.12/${SONAR_SCALA_VERSION}/sonar-scala_2.12-${SONAR_SCALA_VERSION}-assembly.jar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters