-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added directory creation for trivy output in Dockerfile - Update Java Base Image to 17.0.13-1 - Update cas plugin to 5.1.0 - Update cas plugin version in goss to sonar-cas-plugin-5.1.0.jar - Update SonarQube to 9.9.8.100196 - Adjusted changelog and release notes
- Loading branch information
1 parent
4b6d696
commit 664b987
Showing
6 changed files
with
19 additions
and
8 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
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
FROM registry.cloudogu.com/official/java:17.0.12-3 as base | ||
FROM registry.cloudogu.com/official/java:17.0.13-1 as base | ||
|
||
ENV SONARQUBE_HOME=/opt/sonar \ | ||
# mark as webapp for nginx | ||
SERVICE_TAGS=webapp \ | ||
SONAR_VERSION=9.9.7.96285 \ | ||
CAS_PLUGIN_VERSION=5.0.2 \ | ||
SONAR_VERSION=9.9.8.100196 \ | ||
CAS_PLUGIN_VERSION=5.1.0 \ | ||
STARTUP_DIR="/" | ||
|
||
FROM base as builder | ||
|
||
ENV SONARQUBE_ZIP_SHA256=82eb93a1380dac4725ad24fd94a11917fb2e0ac6b9a9c98b20e436ed2a50f351 \ | ||
CAS_PLUGIN_JAR_SHA256=82f9fd7f65c9ce255f4f1dd6649a65a1f7eaf2acbc6a54f2c8103cbc2a42010f \ | ||
ENV SONARQUBE_ZIP_SHA256=07d9100c95e5c19f1785c0e9ffc7c8973ce3069a568d2500146a5111b6e966cd \ | ||
CAS_PLUGIN_JAR_SHA256=67a127a4f8fd247b2f2c84869d62d960c97fb546083a79fbac637163123490a2 \ | ||
BUILDER_HOME="/builder/sonar" | ||
|
||
WORKDIR /builder | ||
|
@@ -27,7 +27,7 @@ RUN echo "${CAS_PLUGIN_JAR_SHA256} *${BUILDER_HOME}/sonar-cas-plugin-${CAS_PLUGI | |
FROM base | ||
|
||
LABEL NAME="official/sonar" \ | ||
VERSION="9.9.7-1" \ | ||
VERSION="9.9.8-1" \ | ||
maintainer="[email protected]" | ||
|
||
RUN set -eux \ | ||
|
@@ -43,6 +43,7 @@ RUN set -eux \ | |
|
||
COPY --from=builder --chown=1000:1000 /builder/sonar ${SONARQUBE_HOME} | ||
COPY --chown=1000:1000 ./resources / | ||
RUN mkdir -p /trivy/output | ||
|
||
EXPOSE 9000 | ||
|
||
|
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