Added Helm binary
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2022-04-23 13:07:31 +02:00
parent 576e61867c
commit 839a46b213
1 changed files with 10 additions and 1 deletions

View File

@ -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/<name>/<name>/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