[bitnami/argo-workflow-cli] Release 3.4.0-scratch-r0 (#8173)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
2214461c29
commit
1df9e6d19a
|
|
@ -1,30 +1,40 @@
|
|||
FROM bitnami/minideb:bullseye as builder
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
ENV OS_ARCH="${TARGETARCH:-amd64}"
|
||||
|
||||
COPY prebuildfs /
|
||||
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl gzip tar
|
||||
RUN install_packages ca-certificates curl
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f argo-workflows-3.3.9-1-linux-amd64-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/argo-workflows-3.3.9-1-linux-amd64-debian-11.tar.gz -O ; \
|
||||
if [ ! -f argo-workflows-3.4.0-1-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/argo-workflows-3.4.0-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/argo-workflows-3.4.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
echo "60d350cffc00592a843738d93309549c18e5f8b48d0e164cb542f725c12aa1ce argo-workflows-3.3.9-1-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf argo-workflows-3.3.9-1-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --wildcards '*/files' && \
|
||||
rm -rf argo-workflows-3.3.9-1-linux-amd64-debian-11.tar.gz
|
||||
sha256sum -c argo-workflows-3.4.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf argo-workflows-3.4.0-1-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf argo-workflows-3.4.0-1-linux-${OS_ARCH}-debian-11.tar.gz argo-workflows-3.4.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
|
||||
######
|
||||
|
||||
FROM scratch
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
ENV OS_ARCH="${TARGETARCH:-amd64}"
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="3.3.9-scratch-r2" \
|
||||
org.opencontainers.image.ref.name="3.4.0-scratch-r0" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli" \
|
||||
org.opencontainers.image.title="argo-workflow-cli" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="3.3.9"
|
||||
org.opencontainers.image.version="3.4.0"
|
||||
|
||||
COPY prebuildfs /
|
||||
COPY rootfs /
|
||||
COPY --from=builder /opt/bitnami/argo-workflows/hack/nsswitch.conf /etc/nsswitch.conf
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"argo-workflows": {
|
||||
"arch": "amd64",
|
||||
"digest": "60d350cffc00592a843738d93309549c18e5f8b48d0e164cb542f725c12aa1ce",
|
||||
"digest": "8685a983d1032baef2211f3dc33cc1e74b6ef68a40bc28ec1e43696ff4df32a1",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "3.3.9-1"
|
||||
"version": "3.4.0-1"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
rolling-tags:
|
||||
- "3"
|
||||
- "3-scratch"
|
||||
- "3.3.9"
|
||||
- "3.4.0"
|
||||
- "latest"
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
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/).
|
||||
|
||||
|
||||
* [`3`, `3-scratch`, `3.3.9`, `3.3.9-scratch-r2`, `latest` (3/scratch/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/argo-workflows/3/scratch/ Dockerfile)
|
||||
* [`3`, `3-scratch`, `3.4.0`, `3.4.0-scratch-r0`, `latest` (3/scratch/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/argo-workflows/3/scratch/ Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue