26 lines
1.3 KiB
Docker
26 lines
1.3 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.4-0" --checksum 0931d0145f2537ec2b22cb5d337c16e7c1bdc7b8b063103b8ded36526494ca53
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-workflow-exec" "3.2.8-3" --checksum 2a51df33f883dd15116bbf3b59b17a6a515c35b1875b369211c75a98a270bc68
|
|
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 BITNAMI_APP_NAME="argo-workflow-exec" \
|
|
BITNAMI_IMAGE_VERSION="3.2.8-debian-10-r19" \
|
|
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" ]
|