From 8b76aa76a83bc429efd8780f75b65ff65ae0d1a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Sat, 2 Oct 2021 17:25:43 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Bump=20up=20versions=20and?= =?UTF-8?q?=20fix=20krew=20missing=20from=20PATH?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #12 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 04142d2..3f40e58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,9 @@ RUN apk add git RUN go get -u github.com/simeji/jid/cmd/jid FROM alpine ENV \ - COMPOSE_VERSION=1.29.1 \ - HELM_VERSION=3.5.4 \ - KUBECTL_VERSION=1.21.0 \ + COMPOSE_VERSION=1.29.2 \ + HELM_VERSION=3.7.0 \ + KUBECTL_VERSION=1.22.2 \ SHIP_VERSION=0.51.3 ## Alpine base ## ENV COMPLETIONS=/usr/share/bash-completion/completions @@ -50,7 +50,7 @@ RUN mkdir /tmp/krew \ && ./krew-linux_amd64 install krew \ && cd \ && rm -rf /tmp/krew \ - && echo export 'PATH=$HOME/.krew/bin:$PATH' >> .bashrc + && echo 'export PATH=$HOME/.krew/bin:$PATH' >> /etc/profile RUN curl -fsSL https://github.com/derailed/k9s/releases/latest/download/k9s_$(uname -s)_$(uname -m).tar.gz \ | tar -zxvf- -C /usr/local/bin k9s RUN curl -fsSL https://github.com/derailed/popeye/releases/latest/download/popeye_$(uname -s)_$(uname -m).tar.gz \