aboutsummaryrefslogtreecommitdiff
path: root/src/helm-tools/Dockerfile
blob: d3aba413d3a84bf6f6d43e76442cff8deb511944 (plain)
1
2
3
4
5
6
7
8
FROM registry.gitlab.com/grumps/grumpy-containers/base:v0.0.3
RUN apt-get update -y \
        && apt-get install -y curl make git \
            && curl -L -o /tmp/hm.tar.gz https://get.helm.sh/helm-v2.14.3-linux-amd64.tar.gz \
                && tar xvf /tmp/hm.tar.gz -C /tmp \
                    && install /tmp/linux-amd64/helm /usr/local/bin/helm \
                        && helm init  --client-only
USER app