32 lines
1.6 KiB
Docker
32 lines
1.6 KiB
Docker
FROM docker.io/bitnami/minideb:bullseye
|
|
ENV OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-11" \
|
|
OS_NAME="linux"
|
|
|
|
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
|
org.opencontainers.image.description="Application packaged by Bitnami" \
|
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec" \
|
|
org.opencontainers.image.title="argo-workflow-exec" \
|
|
org.opencontainers.image.vendor="VMware, Inc." \
|
|
org.opencontainers.image.version="3.3.9"
|
|
|
|
COPY prebuildfs /
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl gzip jq procps tar
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubectl" "1.23.9-2" --checksum dbe3739fe1e50b4a1fe3fd040e0f9e5b8a0d039cb4c0f9a3939a12ac940fd0c8
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-153" --checksum d3ae0109be24e8bc56f97359b8290b91243454de946dd60bd8520a0896a88449
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-workflow-exec" "3.3.9-0" --checksum 672ee5cfb6d20c53e0ff45be848d3529420cacae1b5888b44e6ddf287e3f8996
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/argo-workflow-exec/postunpack.sh
|
|
ENV APP_VERSION="3.3.9" \
|
|
BITNAMI_APP_NAME="argo-workflow-exec" \
|
|
PATH="/opt/bitnami/kubectl/bin:/opt/bitnami/common/bin:/opt/bitnami/argo-workflow-exec/bin:/opt/bitnami/argo-workflow-exec/hack:$PATH"
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/argo-workflow-exec/bin/argoexec" ]
|
|
CMD [ "help" ]
|