diff --git a/bitnami/harbor-exporter/2/debian-12/Dockerfile b/bitnami/harbor-exporter/2/debian-12/Dockerfile index 4a3940059cf6..46c09a0eb295 100644 --- a/bitnami/harbor-exporter/2/debian-12/Dockerfile +++ b/bitnami/harbor-exporter/2/debian-12/Dockerfile @@ -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 diff --git a/bitnami/harbor-exporter/2/debian-12/rootfs/opt/bitnami/scripts/libharbor.sh b/bitnami/harbor-exporter/2/debian-12/rootfs/opt/bitnami/scripts/libharbor.sh index a9450b30276f..73ff34fb4a9e 100644 --- a/bitnami/harbor-exporter/2/debian-12/rootfs/opt/bitnami/scripts/libharbor.sh +++ b/bitnami/harbor-exporter/2/debian-12/rootfs/opt/bitnami/scripts/libharbor.sh @@ -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