All checks were successful
Build docker container / Build image (push) Successful in 13s
8 lines
187 B
Docker
8 lines
187 B
Docker
FROM bitnami/kubectl:1.30.4
|
|
|
|
USER root
|
|
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 |