FROM bitnami/minideb:bullseye as builder ARG TARGETARCH ENV OS_ARCH="${TARGETARCH:-amd64}" COPY prebuildfs / SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install required system packages and dependencies RUN install_packages ca-certificates curl RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ COMPONENTS=( \ "kubeapps-asset-syncer-2.7.0-1-linux-${OS_ARCH}-debian-11" \ ) && \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \ curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \ fi && \ sha256sum -c "${COMPONENT}.tar.gz.sha256" && \ tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \ done ###### FROM scratch ARG TARGETARCH ENV OS_ARCH="${TARGETARCH:-amd64}" LABEL org.opencontainers.image.base.name="scratch" \ org.opencontainers.image.created="2023-05-21T14:38:50Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ org.opencontainers.image.ref.name="2.7.0-scratch-r1" \ org.opencontainers.image.title="kubeapps-asset-syncer" \ org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.version="2.7.0" COPY prebuildfs / COPY rootfs / COPY --from=builder /opt/bitnami/kubeapps-asset-syncer/bin/asset-syncer /asset-syncer USER 1001 CMD [ "/asset-syncer" ]