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.7 LTS. (#13)
- Loading branch information
Showing
8 changed files
with
50 additions
and
12 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,12 @@ | ||
# SonarQube 6.7.7 LTS image with bundled sonar-scala 6.8.0 (https://github.com/mwz/sonar-scala). | ||
|
||
FROM sonarqube:6.7.7-community | ||
|
||
ENV SONAR_SCALA_VERSION 6.8.0 | ||
|
||
WORKDIR /opt/sonarqube/extensions/plugins | ||
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,13 @@ | ||
# Minideb image with bundled sonar-scala 6.8.0 (https://github.com/mwz/sonar-scala), | ||
# which can be mounted as a volume into a SonarQube container. | ||
|
||
FROM bitnami/minideb:stretch | ||
RUN install_packages curl ca-certificates | ||
|
||
ENV SONAR_SCALA_VERSION 6.8.0 | ||
|
||
RUN groupadd -r sonarqube && useradd -r -g sonarqube sonarqube | ||
WORKDIR /opt/sonarqube/extensions/plugins | ||
RUN curl -L -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" | ||
RUN chown -R sonarqube:sonarqube /opt/sonarqube |
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
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