From 839a46b213e1763ff99bf671c83a5d1b3eeef7be Mon Sep 17 00:00:00 2001 From: djpbessems Date: Sat, 23 Apr 2022 13:07:31 +0200 Subject: [PATCH] Added Helm binary --- Dockerfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e319d13..4937138 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,16 @@ -#FROM alpine:latest AS download +# FROM alpine:latest AS download + +# RUN apk --update add --no-cache \ +# curl \ +# jq && \ +# curl -L https://api.github.com/repos///releases/latest | \ +# jq -r '.assets[] | select(.name | contains("amd64")) | .browser_download_url' | \ +# xargs -I {} curl -L -o /tmp/packages-microsoft-prod.deb {} FROM debian:11-slim +COPY --from=alpine/helm:latest /usr/bin/helm /usr/bin/helm + ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en ENV LC_ALL en_US.UTF-8