Technical Diary of a Dummy

Thoughts and Opinions that will live on after they have vacated my brain.

Install helm on a Dockerfile -

James Land - 28 Mar 2021

Install helm on a Dockerfile

Useful clip for creating a Jenkins Agent that includes Helm. Can replace the version with whatever is the latest.

# Install helm
RUN curl -fsSL -o /tmp/helm.tar.gz 	https://get.helm.sh/helm-v3.5.3-linux-amd64.tar.gz && \
    tar -zxvf /tmp/helm.tar.gz -C /tmp && \
    mv /tmp/linux-amd64/helm /usr/local/bin/helm && \
    rm /tmp/helm.tar.gz && rm -rf /tmp/linux-amd64
Tags:
docker helm openshift