@@ -8,14 +8,14 @@ ARG TARGETARCH
88
99LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
1010 org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
11- org.opencontainers.image.created="2025-03-15T20:24:04Z " \
11+ org.opencontainers.image.created="2025-03-31T18:44:49Z " \
1212 org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
1313 org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/nats-exporter/README.md" \
14- org.opencontainers.image.ref.name="0.16.0 -debian-12-r11 " \
14+ org.opencontainers.image.ref.name="0.17.2 -debian-12-r0 " \
1515 org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nats-exporter" \
1616 org.opencontainers.image.title="nats-exporter" \
1717 org.opencontainers.image.vendor="Broadcom, Inc." \
18- org.opencontainers.image.version="0.16.0 "
18+ org.opencontainers.image.version="0.17.2 "
1919
2020ENV HOME="/" \
2121 OS_ARCH="${TARGETARCH:-amd64}" \
@@ -26,17 +26,17 @@ COPY prebuildfs /
2626SHELL ["/bin/bash" , "-o" , "errexit" , "-o" , "nounset" , "-o" , "pipefail" , "-c" ]
2727# Install required system packages and dependencies
2828RUN install_packages ca-certificates curl procps
29- RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
29+ RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
3030 COMPONENTS=( \
31- "nats-exporter-0.16.0-6 -linux-${OS_ARCH}-debian-12" \
31+ "nats-exporter-0.17.2-0 -linux-${OS_ARCH}-debian-12" \
3232 ) ; \
3333 for COMPONENT in "${COMPONENTS[@]}" ; do \
3434 if [ ! -f "${COMPONENT}.tar.gz" ]; then \
3535 curl -SsLf "https://${DOWNLOADS_URL}/${COMPONENT}.tar.gz" -O ; \
3636 curl -SsLf "https://${DOWNLOADS_URL}/${COMPONENT}.tar.gz.sha256" -O ; \
3737 fi ; \
3838 sha256sum -c "${COMPONENT}.tar.gz.sha256" ; \
39- tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' ; \
39+ tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner ; \
4040 rm -rf "${COMPONENT}" .tar.gz{,.sha256} ; \
4141 done
4242RUN apt-get autoremove --purge -y curl && \
@@ -45,7 +45,7 @@ RUN apt-get autoremove --purge -y curl && \
4545RUN chmod g+rwX /opt/bitnami
4646RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true
4747
48- ENV APP_VERSION="0.16.0 " \
48+ ENV APP_VERSION="0.17.2 " \
4949 BITNAMI_APP_NAME="nats-exporter" \
5050 PATH="/opt/bitnami/nats-exporter/bin:$PATH"
5151
0 commit comments