Skip to content

Commit

Permalink
Install helm from apt repo
Browse files Browse the repository at this point in the history
  • Loading branch information
samtoxie committed Oct 14, 2024
1 parent 3c33617 commit 94da802
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ RUN sudo apt update -y && \
sudo apt install -y \
curl git

RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
RUN curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null && \
sudo apt-get install apt-transport-https --yes && \
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list && \
sudo apt-get update && \
sudo apt-get install -y \
helm

0 comments on commit 94da802

Please sign in to comment.