github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/docker/Dockerfile-charts (about)

     1  # Build image that contains all dependent helm charts
     2  FROM alpine/helm:3.12.1 as builder
     3  
     4  # copy script to execute
     5  COPY docker/custom-scripts/fetch-all-helm-charts.sh /tmp/fetch-all-helm-charts.sh
     6  COPY deploy/helm deploy/helm
     7  
     8  # fetch all helm charts
     9  RUN bash /tmp/fetch-all-helm-charts.sh deploy/helm /tmp/charts
    10  
    11  FROM docker.io/alpine:edge as dist
    12  
    13  COPY --from=builder /tmp/charts /charts
    14  USER 65532:65532