[bitnami/harbor-exporter] Release 2.15.0-debian-12-r2 (#92958)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2026-05-08 06:16:12 +02:00
committed by GitHub
parent 91319625af
commit 89fdf18e95
2 changed files with 4 additions and 4 deletions
@@ -7,7 +7,7 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith"
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2026-04-08T03:01:18Z" \
org.opencontainers.image.created="2026-05-08T03:37:27Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/harbor-exporter/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/harbor-exporter" \
@@ -49,7 +49,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/harbor-exporter/postunpack.sh
ENV APP_VERSION="2.15.0" \
BITNAMI_APP_NAME="harbor-exporter" \
IMAGE_REVISION="1" \
IMAGE_REVISION="2" \
PATH="/opt/bitnami/harbor-exporter/bin:$PATH"
EXPOSE 9090
@@ -25,7 +25,7 @@
get_system_cert_paths() {
local distro
distro="$(get_os_metadata --id)"
if [[ "$distro" =~ ^(debian|ubuntu)$ ]]; then
if [[ "$distro" =~ ^debian$ ]]; then
echo "/etc/ssl/certs/"
elif [[ "$distro" =~ ^photon$ ]]; then
echo "/etc/pki/tls/certs/"
@@ -98,7 +98,7 @@ install_cert() {
local distro
distro="$(get_os_metadata --id)"
if [[ "$distro" =~ ^(debian|ubuntu)$ ]]; then
if [[ "$distro" =~ ^debian$ ]]; then
cat "$cert" >> /etc/ssl/certs/ca-certificates.crt
elif [[ "$distro" =~ ^photon$ ]]; then
cat "$cert" >> /etc/pki/tls/certs/ca-bundle.crt