github.com/alibaba/sealer@v0.8.6-0.20220430115802-37a2bdaa8173/docs/api/kubefile.md (about) 1 # kubefile 2 3 ```shell script 4 FROM kubernetes:1.18.0 # Base Image 5 COPY wordpress-chart . # copy files to CloudImage 6 COPY helm /bin 7 RUN wget https://get.helm.sh/helm-v3.5.2-linux-amd64.tar.gz # run command on building a CloudImage 8 CMD helm install wordpress wordpress-chart # run command on creating a cluster 9 CMD helm list # multi CMD is valid 10 ```