Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 446 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 446 Bytes

helm-release-cleaner

Image used for helm usage with bash scripts

FROM docker.io/alpine:3.12

RUN apk update && \
    apk add coreutils \
            curl      \
            bash      \
            openssl

RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && \
    chmod 700 get_helm.sh                                                                         && \
    ./get_helm.sh