initial commit
Build and push k8s-workflow-image / build (push) Failing after 4s

This commit is contained in:
2025-04-09 21:18:17 +02:00
commit dcaea6c600
2 changed files with 32 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM alpine:3.19
# Install kubectl and helm
RUN apk add --no-cache curl bash ca-certificates && \
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 && \
rm kubectl && \
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
ENTRYPOINT ["/bin/sh"]