From 21dff7890ccc9320ec8c99a3898693dfbb69102c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Oct 2022 02:56:53 +0200 Subject: [PATCH] [bitnami/gitlab-runner-helper] Release 15.4.0-debian-11-r5 (#9185) Signed-off-by: Bitnami Containers Signed-off-by: Bitnami Containers --- .../15/debian-11/Dockerfile | 39 +++++++------------ .../opt/bitnami/.bitnami_components.json | 12 +++--- bitnami/gitlab-runner-helper/README.md | 2 +- 3 files changed, 22 insertions(+), 31 deletions(-) diff --git a/bitnami/gitlab-runner-helper/15/debian-11/Dockerfile b/bitnami/gitlab-runner-helper/15/debian-11/Dockerfile index 34608a51afbb..dbef689e095f 100644 --- a/bitnami/gitlab-runner-helper/15/debian-11/Dockerfile +++ b/bitnami/gitlab-runner-helper/15/debian-11/Dockerfile @@ -4,7 +4,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="15.4.0-debian-11-r4" \ + org.opencontainers.image.ref.name="15.4.0-debian-11-r5" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/gitlab-runner-helper" \ org.opencontainers.image.title="gitlab-runner-helper" \ org.opencontainers.image.vendor="VMware, Inc." \ @@ -20,29 +20,20 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install required system packages and dependencies RUN install_packages ca-certificates curl git git-lfs openssh-client procps RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ - fi && \ - sha256sum -c dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ - tar -zxf dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz dumb-init-1.2.5-153-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 -RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f gitlab-runner-helper-15.4.0-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/gitlab-runner-helper-15.4.0-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/gitlab-runner-helper-15.4.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ - fi && \ - sha256sum -c gitlab-runner-helper-15.4.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ - tar -zxf gitlab-runner-helper-15.4.0-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf gitlab-runner-helper-15.4.0-0-linux-${OS_ARCH}-debian-11.tar.gz gitlab-runner-helper-15.4.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 + COMPONENTS=( \ + "dumb-init-1.2.5-154-linux-${OS_ARCH}-debian-11" \ + "gosu-1.14.0-155-linux-${OS_ARCH}-debian-11" \ + "gitlab-runner-helper-15.4.0-1-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/gitlab-runner-helper/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/gitlab-runner-helper/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 813fb4a26e78..61b18d4df7ef 100644 --- a/bitnami/gitlab-runner-helper/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/gitlab-runner-helper/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,23 +1,23 @@ { "dumb-init": { "arch": "amd64", - "digest": "40f42ee4af6e04192a41f4e099403b16aa92fc1a047249e6d63715d92b77c672", + "digest": "b17e28e1449b1eeb85b12b1f55919d257d29f83bad1eb3524afd2dd600e899d9", "distro": "debian-11", "type": "NAMI", - "version": "1.2.5-153" + "version": "1.2.5-154" }, "gitlab-runner-helper": { "arch": "amd64", - "digest": "722b17af2077a808bd4b39dafe1c652bc4c79bcb847bdbba454faef952a3d84c", + "digest": "6fe9e6b4c7a63d187befca63aa89e60ae980d7a0be85f3caed82ed9f0802b4fb", "distro": "debian-11", "type": "NAMI", - "version": "15.4.0-0" + "version": "15.4.0-1" }, "gosu": { "arch": "amd64", - "digest": "e36c3d90f4fbfbe989f40947fa7c8ab817f12fcf97d3aef893c753a20ce976ab", + "digest": "f21869b27c26b9c3053bce8b419a0fdf1dc45fcf13a7c2058e0afb6996d3687f", "distro": "debian-11", "type": "NAMI", - "version": "1.14.0-154" + "version": "1.14.0-155" } } \ No newline at end of file diff --git a/bitnami/gitlab-runner-helper/README.md b/bitnami/gitlab-runner-helper/README.md index 45269323963f..92da7184d801 100644 --- a/bitnami/gitlab-runner-helper/README.md +++ b/bitnami/gitlab-runner-helper/README.md @@ -35,7 +35,7 @@ $ docker-compose up -d Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`15`, `15-debian-11`, `15.4.0`, `15.4.0-debian-11-r4`, `latest` (15/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/gitlab-runner-helper/15/debian-11/ Dockerfile) +* [`15`, `15-debian-11`, `15.4.0`, `15.4.0-debian-11-r5`, `latest` (15/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/gitlab-runner-helper/15/debian-11/ Dockerfile) Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).