From 5d0c53b659d0de1bfef9df8b45770913bf2a8c38 Mon Sep 17 00:00:00 2001 From: Akshay Jain Date: Mon, 8 Apr 2024 15:20:31 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 59d144d..a5d24ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN KUBECTL_VERSION=$(curl -L -s https://dl.k8s.io/release/stable.txt) && \ curl -LO "https://dl.k8s.io/${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl.sha256" # Validate the binary -RUN echo "$(cat kubectl.sha256) kubectl" | sha256sum --check --status || echo "ERROR: Invalid checksum" +# RUN echo "$(cat kubectl.sha256) kubectl" | sha256sum --check --status || echo "ERROR: Invalid checksum" # Install kubectl RUN install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl