From 1856db2daabe6a6bcb3b98abc726e685bafe3fd4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Oct 2022 10:18:59 +0200 Subject: [PATCH] [bitnami/wavefront-proxy] Release 10.14.0-debian-11-r46 (#9383) Signed-off-by: Bitnami Containers Signed-off-by: Bitnami Containers Signed-off-by: Fran Mulero Co-authored-by: Fran Mulero --- .../wavefront-proxy/10/debian-11/Dockerfile | 39 +++++++------------ .../opt/bitnami/.bitnami_components.json | 12 +++--- bitnami/wavefront-proxy/README.md | 2 +- 3 files changed, 22 insertions(+), 31 deletions(-) diff --git a/bitnami/wavefront-proxy/10/debian-11/Dockerfile b/bitnami/wavefront-proxy/10/debian-11/Dockerfile index 8e0de309eed9..5771ee4bb510 100644 --- a/bitnami/wavefront-proxy/10/debian-11/Dockerfile +++ b/bitnami/wavefront-proxy/10/debian-11/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \ org.opencontainers.image.description="Application packaged by Bitnami" \ - org.opencontainers.image.ref.name="10.14.0-debian-11-r45" \ + org.opencontainers.image.ref.name="10.14.0-debian-11-r46" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/wavefront-proxy" \ org.opencontainers.image.title="wavefront-proxy" \ org.opencontainers.image.vendor="VMware, Inc." \ @@ -21,29 +21,20 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install required system packages and dependencies RUN install_packages ca-certificates curl procps zlib1g RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f java-11.0.16-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/java-11.0.16-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/java-11.0.16-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ - fi && \ - sha256sum -c java-11.0.16-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ - tar -zxf java-11.0.16-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf java-11.0.16-0-linux-${OS_ARCH}-debian-11.tar.gz java-11.0.16-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f wavefront-proxy-10.14.0-155-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/wavefront-proxy-10.14.0-155-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/wavefront-proxy-10.14.0-155-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ - fi && \ - sha256sum -c wavefront-proxy-10.14.0-155-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ - tar -zxf wavefront-proxy-10.14.0-155-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf wavefront-proxy-10.14.0-155-linux-${OS_ARCH}-debian-11.tar.gz wavefront-proxy-10.14.0-155-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ - fi && \ - sha256sum -c gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ - tar -zxf gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 + COMPONENTS=( \ + "java-11.0.16-1-linux-${OS_ARCH}-debian-11" \ + "wavefront-proxy-10.14.0-157-linux-${OS_ARCH}-debian-11" \ + "gosu-1.14.0-155-linux-${OS_ARCH}-debian-11" \ + ) && \ + for COMPONENT in "${COMPONENTS[@]}"; do \ + if [ ! -f "${COMPONENT}.tar.gz" ]; then \ + curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \ + curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \ + fi && \ + sha256sum -c "${COMPONENT}.tar.gz.sha256" && \ + tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \ + done RUN apt-get autoremove --purge -y curl && \ apt-get update && apt-get upgrade -y && \ apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives diff --git a/bitnami/wavefront-proxy/10/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/wavefront-proxy/10/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 50fcbf4dfb3f..430ed75c9bd9 100644 --- a/bitnami/wavefront-proxy/10/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/wavefront-proxy/10/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,23 +1,23 @@ { "gosu": { "arch": "amd64", - "digest": "e36c3d90f4fbfbe989f40947fa7c8ab817f12fcf97d3aef893c753a20ce976ab", + "digest": "f21869b27c26b9c3053bce8b419a0fdf1dc45fcf13a7c2058e0afb6996d3687f", "distro": "debian-11", "type": "NAMI", - "version": "1.14.0-154" + "version": "1.14.0-155" }, "java": { "arch": "amd64", - "digest": "98cbaca6fc1aca76fdbfc11ee57d05924adc956401396375c4be43c5c671dca5", + "digest": "c375579c55ee13d9561dcfaeba0338a6c2f5233dc386ead63dbbb67cc974fcdb", "distro": "debian-11", "type": "NAMI", - "version": "11.0.16-0" + "version": "11.0.16-1" }, "wavefront-proxy": { "arch": "amd64", - "digest": "4eadae128b20b54a999a40534faef6a400da11d55f41a8f81feea4364feec3ae", + "digest": "dcb3d4b6f963d29036ed1b3a9a439f8a2833f3b0fcf308ed465a6c0c068e1a1a", "distro": "debian-11", "type": "NAMI", - "version": "10.14.0-155" + "version": "10.14.0-157" } } \ No newline at end of file diff --git a/bitnami/wavefront-proxy/README.md b/bitnami/wavefront-proxy/README.md index e0f9a830d31e..d6909f7a5332 100644 --- a/bitnami/wavefront-proxy/README.md +++ b/bitnami/wavefront-proxy/README.md @@ -29,7 +29,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`11`, `11-debian-11`, `11.4.0`, `11.4.0-debian-11-r14`, `latest` (11/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/wavefront-proxy/11/debian-11/Dockerfile) -* [`10`, `10-debian-11`, `10.14.0`, `10.14.0-debian-11-r45` (10/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/wavefront-proxy/10/debian-11/Dockerfile) +* [`10`, `10-debian-11`, `10.14.0`, `10.14.0-debian-11-r46` (10/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/wavefront-proxy/10/debian-11/Dockerfile) Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).