diff options
| author | Max Resnick <max@ofmax.li> | 2019-12-23 07:33:04 -0800 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2019-12-23 07:33:04 -0800 |
| commit | 3ec61949c43463f7771301b9c4f4265eb15a0487 (patch) | |
| tree | 5a917d75a60884d04c507d326890bf77cb70bd3c /src/helm-tools | |
| download | grumpy-containers-3ec61949c43463f7771301b9c4f4265eb15a0487.tar.gz | |
initial commit
Diffstat (limited to 'src/helm-tools')
| -rw-r--r-- | src/helm-tools/Dockerfile | 8 | ||||
| -rw-r--r-- | src/helm-tools/VERSION | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/helm-tools/Dockerfile b/src/helm-tools/Dockerfile new file mode 100644 index 0000000..348cd6a --- /dev/null +++ b/src/helm-tools/Dockerfile @@ -0,0 +1,8 @@ +FROM registry.gitlab.com/grumps/grumpy-containers/base:v0.0.1 +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 diff --git a/src/helm-tools/VERSION b/src/helm-tools/VERSION new file mode 100644 index 0000000..9c2228b --- /dev/null +++ b/src/helm-tools/VERSION @@ -0,0 +1 @@ +v2.14.3 |