diff --git a/helm/Dockerfile b/helm/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..eb4411f0e5551bd4d828d236b8cca3811cda3a64 --- /dev/null +++ b/helm/Dockerfile @@ -0,0 +1,11 @@ +FROM debian:bookworm + +RUN apt update && \ + apt install -y curl + +RUN curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null +RUN apt install -y apt-transport-https +RUN echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list + +RUN apt update && \ + apt install -y helm