Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions chartvalidator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ FROM alpine:3.22
RUN apk add --no-cache curl bash

# Install python3 and pip
RUN apk add --no-cache python3 py3-pip openssl
RUN apk add --no-cache python3 py3-pip openssl git

# Install Helm
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3

RUN chmod 700 get_helm.sh
RUN ./get_helm.sh

# Install helm unittest
RUN helm plugin install https://github.com/helm-unittest/helm-unittest.git

# Install kustomize
RUN curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" -o install_kustomize.sh

Expand Down