32 lines
1.7 KiB
Docker
32 lines
1.7 KiB
Docker
FROM docker.io/bitnami/minideb:buster
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV HOME="/" \
|
|
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 git git-lfs gnupg gzip libc6 openssh-server procps tar
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kustomize" "4.2.0-0" --checksum 76824eae54c4a2de1ad3859306d3fcccefc185fe1445d97b258cb91f8084f06c
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "ksonnet" "0.13.1-0" --checksum d789f0ddb6cf2351ba09ca3e907ea2e41605067f398aa8fa069bdcfe59a25cd6
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "helm" "3.6.3-0" --checksum 8e7f0a8b30b71c7df2a108f06ddd09a879e925007b54dd7e3744a6348906fdde
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.13.0-0" --checksum fd7257c2736164d02832dbf72e2c1ed9d875bf3e32f0988520796bc503330129
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-cd" "2.0.4-4" --checksum 4b9a9bcab22a0e26d775592f1bc168f8f142b40f207e7e7ffe7e27df3e13cd2f
|
|
RUN chmod g+rwX /opt/bitnami
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/argo-cd/postunpack.sh
|
|
ENV BITNAMI_APP_NAME="argo-cd" \
|
|
BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r20" \
|
|
LIBNSS_WRAPPER_PATH="/opt/bitnami/common/lib/libnss_wrapper.so" \
|
|
LNAME="argocd" \
|
|
NSS_WRAPPER_GROUP="/opt/bitnami/argo-cd/nss_group" \
|
|
NSS_WRAPPER_PASSWD="/opt/bitnami/argo-cd/nss_passwd" \
|
|
PATH="/opt/bitnami/kustomize/bin:/opt/bitnami/ksonnet/bin:/opt/bitnami/helm/bin:/opt/bitnami/common/bin:/opt/bitnami/argo-cd/bin:/opt/bitnami/argo-cd/hack:$PATH"
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/argo-cd/entrypoint.sh" ]
|
|
CMD [ "--help" ]
|