[bitnami/sonarqube] Release 25.8.0-debian-12-r0 (#84382)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-08-04 19:33:16 +02:00
committed by GitHub
parent 69e6a8083e
commit 22cf9f91bc
3 changed files with 5 additions and 6 deletions

View File

@@ -9,13 +9,13 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2025-07-17T07:40:16Z" \
org.opencontainers.image.created="2025-08-04T17:05:48Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/sonarqube/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/sonarqube" \
org.opencontainers.image.title="sonarqube" \
org.opencontainers.image.vendor="Broadcom, Inc." \
org.opencontainers.image.version="25.7.0"
org.opencontainers.image.version="25.8.0"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@@ -32,7 +32,7 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
COMPONENTS=( \
"postgresql-client-17.5.0-1-linux-${OS_ARCH}-debian-12" \
"jre-17.0.16-12-0-linux-${OS_ARCH}-debian-12" \
"sonarqube-25.7.0-0-linux-${OS_ARCH}-debian-12" \
"sonarqube-25.8.0-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@@ -51,7 +51,7 @@ RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true
COPY rootfs /
RUN /opt/bitnami/scripts/java/postunpack.sh
RUN /opt/bitnami/scripts/sonarqube/postunpack.sh
ENV APP_VERSION="25.7.0" \
ENV APP_VERSION="25.8.0" \
BITNAMI_APP_NAME="sonarqube" \
JAVA_HOME="/opt/bitnami/java" \
PATH="/opt/bitnami/postgresql/bin:/opt/bitnami/java/bin:$PATH"

View File

@@ -15,6 +15,6 @@
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "25.7.0-0"
"version": "25.8.0-0"
}
}

View File

@@ -26,7 +26,6 @@ replace_in_file "${SONARQUBE_BIN_DIR}/sonar.sh" "PIDFILE=\".*" "PIDFILE=\"/opt/b
# Based on https://github.com/SonarSource/docker-sonarqube/blob/master/9/community/Dockerfile#L129
info "Configuring file permissions for SonarQube"
ensure_group_exists "$SONARQUBE_DAEMON_GROUP" --gid "$SONARQUBE_DAEMON_GROUP_ID"
ensure_user_exists "$SONARQUBE_DAEMON_USER" --system --uid "$SONARQUBE_DAEMON_USER_ID" --group "$SONARQUBE_DAEMON_GROUP" --append-groups "root"
for dir in "$SONARQUBE_DATA_DIR" "$SONARQUBE_EXTENSIONS_DIR" "$SONARQUBE_LOGS_DIR" "$SONARQUBE_TMP_DIR" "$SONARQUBE_MOUNTED_PROVISIONING_DIR" "${SONARQUBE_BASE_DIR}/pids" "$SONARQUBE_VOLUME_DIR"; do