mirror of
https://github.com/bitnami/containers.git
synced 2026-03-06 15:09:19 +08:00
25 lines
1.2 KiB
Docker
25 lines
1.2 KiB
Docker
FROM docker.io/bitnami/minideb:bullseye
|
|
ENV OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-11" \
|
|
OS_NAME="linux"
|
|
|
|
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.8-2" --checksum 1e9ecc022767fee635c7b1deac24675ca74825b3e7343f61a5df8b1bc82df0d8
|
|
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.8" \
|
|
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" ]
|