This commit is contained in:
Kjeld Schouten
2024-11-06 17:00:57 +01:00
parent d27426bd8b
commit 9c6539bfc9
+3 -3
View File
@@ -20,9 +20,9 @@ RUN curl -L "https://github.com/truecharts/public/releases/download/v${VERSION}/
&& rm /tmp/clustertool.tar.gz
# Download and set up the krew binary
RUN curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/krew-linux_amd64.tar.gz"
&& tar zxvf "krew-linux_amd64.tar.gz"
&& ./"krew-linux_amd64" install krew
RUN curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/krew-linux_amd64.tar.gz" \
&& tar zxvf "krew-linux_amd64.tar.gz" \
&& ./"krew-linux_amd64" install krew \
&& rm /tmp/clustertool.tar.gz
ENV PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"