mirror of
https://github.com/bitnami/containers.git
synced 2026-03-14 06:48:11 +08:00
[bitnami/gitlab-runner-helper] Release 15.4.0-debian-11-r5 (#9185)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -4,7 +4,7 @@ ARG TARGETARCH
|
|||||||
|
|
||||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
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.source="https://github.com/bitnami/containers/tree/main/bitnami/gitlab-runner-helper" \
|
||||||
org.opencontainers.image.title="gitlab-runner-helper" \
|
org.opencontainers.image.title="gitlab-runner-helper" \
|
||||||
org.opencontainers.image.vendor="VMware, Inc." \
|
org.opencontainers.image.vendor="VMware, Inc." \
|
||||||
@@ -20,29 +20,20 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||||||
# Install required system packages and dependencies
|
# Install required system packages and dependencies
|
||||||
RUN install_packages ca-certificates curl git git-lfs openssh-client procps
|
RUN install_packages ca-certificates curl git git-lfs openssh-client procps
|
||||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
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 \
|
COMPONENTS=( \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
"dumb-init-1.2.5-154-linux-${OS_ARCH}-debian-11" \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/dumb-init-1.2.5-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
"gosu-1.14.0-155-linux-${OS_ARCH}-debian-11" \
|
||||||
fi && \
|
"gitlab-runner-helper-15.4.0-1-linux-${OS_ARCH}-debian-11" \
|
||||||
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' && \
|
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||||
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
|
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
|
||||||
if [ ! -f gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
fi && \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
|
||||||
fi && \
|
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||||
sha256sum -c gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
rm -rf "${COMPONENT}.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' && \
|
done
|
||||||
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
|
|
||||||
RUN apt-get autoremove --purge -y curl && \
|
RUN apt-get autoremove --purge -y curl && \
|
||||||
apt-get update && apt-get upgrade -y && \
|
apt-get update && apt-get upgrade -y && \
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
{
|
{
|
||||||
"dumb-init": {
|
"dumb-init": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "40f42ee4af6e04192a41f4e099403b16aa92fc1a047249e6d63715d92b77c672",
|
"digest": "b17e28e1449b1eeb85b12b1f55919d257d29f83bad1eb3524afd2dd600e899d9",
|
||||||
"distro": "debian-11",
|
"distro": "debian-11",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "1.2.5-153"
|
"version": "1.2.5-154"
|
||||||
},
|
},
|
||||||
"gitlab-runner-helper": {
|
"gitlab-runner-helper": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "722b17af2077a808bd4b39dafe1c652bc4c79bcb847bdbba454faef952a3d84c",
|
"digest": "6fe9e6b4c7a63d187befca63aa89e60ae980d7a0be85f3caed82ed9f0802b4fb",
|
||||||
"distro": "debian-11",
|
"distro": "debian-11",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "15.4.0-0"
|
"version": "15.4.0-1"
|
||||||
},
|
},
|
||||||
"gosu": {
|
"gosu": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "e36c3d90f4fbfbe989f40947fa7c8ab817f12fcf97d3aef893c753a20ce976ab",
|
"digest": "f21869b27c26b9c3053bce8b419a0fdf1dc45fcf13a7c2058e0afb6996d3687f",
|
||||||
"distro": "debian-11",
|
"distro": "debian-11",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "1.14.0-154"
|
"version": "1.14.0-155"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -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/).
|
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).
|
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user