From e91606d4270493d259b7eeff8dc7183d35f34509 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Tue, 31 Dec 2024 15:21:31 -0500 Subject: [PATCH] fix: remove `kubectl` from Dockefile (#822) This isn't used by flux-local --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f05040cb..92bbe5c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,6 @@ RUN pip install -e . COPY --from=ghcr.io/fluxcd/flux-cli:v2.4.0 /usr/local/bin/flux /usr/local/bin/flux COPY --from=docker.io/alpine/helm:3.16.4 /usr/bin/helm /usr/local/bin/helm -COPY --from=docker.io/bitnami/kubectl:1.32.0 /opt/bitnami/kubectl/bin/kubectl /usr/local/bin/kubectl COPY --from=registry.k8s.io/kustomize/kustomize:v5.4.3 /app/kustomize /usr/local/bin/kustomize USER 1001