9 lines
276 B
Docker
9 lines
276 B
Docker
FROM bitnami/kubectl:1.30.4
|
|
|
|
USER root
|
|
RUN wget https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 -O - | bash
|
|
RUN useradd -m -u 1001 -o -s /bin/bash notroot
|
|
USER notroot
|
|
COPY createHelmYaml.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT bash /usr/local/bin/createHelmYaml.sh |