mirror of
https://github.com/bitnami/containers.git
synced 2026-03-07 01:07:20 +08:00
24 lines
1.2 KiB
Docker
24 lines
1.2 KiB
Docker
FROM docker.io/bitnami/minideb:buster
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-10" \
|
|
OS_NAME="linux"
|
|
|
|
COPY prebuildfs /
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl docker git gzip jq procps tar
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubectl" "1.23.1-1" --checksum c31e2f5f9f96816b27e25132d9030b3232b2a30dd75ffd486b91dc8e0fdb7c44
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-1" --checksum 16f1a317859b06ae82e816b30f98f28b4707d18fe6cc3881bff535192a7715dc
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-workflow-exec" "3.2.6-1" --checksum 8616cd1576c9f12c8b7e3dbbda3e381c865473cc410e93e8417538202134c01b
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/argo-workflow-exec/postunpack.sh
|
|
ENV BITNAMI_APP_NAME="argo-workflow-exec" \
|
|
BITNAMI_IMAGE_VERSION="3.2.6-debian-10-r20" \
|
|
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" ]
|