again
Some checks failed
Build and push k8s-workflow-image / build (push) Failing after 4s

This commit is contained in:
Chris Ellrich 2025-04-09 21:30:06 +02:00
parent 96f7aadd5a
commit c1c9650f47
Signed by: c.ellrich
GPG Key ID: D1850E1719D845AE

View File

@ -3,9 +3,9 @@ FROM alpine:3.19
RUN apk add --no-cache curl bash ca-certificates RUN apk add --no-cache curl bash ca-certificates
# Install kubectl # Install kubectl
RUN curl -LO "https://dl.k8s.io/release/$(curl -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \ RUN sh -c 'curl -LO "https://dl.k8s.io/release/$(curl -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && \ install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && rm kubectl'
rm kubectl
# Install Helm # Install Helm
RUN curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash RUN curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash