github.com/alibaba/sealer@v0.8.6-0.20220430115802-37a2bdaa8173/applications/helm/v3.6.0/README.md (about) 1 # Build a helm CloudImage 2 3 ```shell script 4 sealer build -t sealer-apps/helm:v3.6.0 . 5 sealer push sealer-apps/helm:v3.6.0 6 ``` 7 8 ## Using helm CloudImage as Base Image 9 10 ```shell script 11 FROM sealer-apps/helm:v3.6.0 12 RUN helm repo add openebs https://openebs.github.io/charts \ 13 && helm repo update \ 14 && helm install --namespace openebs --name openebs openebs/openebs 15 ```