From 3be2c8c43eaf2cc9d03f1e01515c04a9afcf9c47 Mon Sep 17 00:00:00 2001 From: chjmil Date: Tue, 19 Nov 2024 10:26:14 -0500 Subject: [PATCH] fix: update kubectl download location Signed-off-by: chjmil --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0ed492ed..2be237f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ARG kubectl_version=1.30.6 WORKDIR /build -RUN curl -sLO https://storage.googleapis.com/kubernetes-release/release/v$kubectl_version/bin/linux/amd64/kubectl && chmod 755 ./kubectl +RUN curl -sLO https://dl.k8s.io/release/v$kubectl_version/bin/linux/amd64/kubectl && chmod 755 ./kubectl # Installation FROM baseline