From f2c561ff3fd34e8d54900966123188f0d3441af8 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Tue, 23 May 2023 17:44:02 +0200 Subject: [PATCH] chore: Remove kubecl from the builder --- Containerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Containerfile b/Containerfile index 1a2aa24..dd596fa 100644 --- a/Containerfile +++ b/Containerfile @@ -6,10 +6,6 @@ FROM registry.hub.docker.com/argoproj/argocd as argocd WORKDIR /out RUN cp $(which argocd) /out/argocd -FROM registry.hub.docker.com/alpine/k8s:1.24.10 as kubectl -WORKDIR /out -RUN cp $(which kubectl) /out/kubectl - FROM registry.hub.docker.com/library/alpine RUN apk update --no-cache&&\ @@ -17,4 +13,3 @@ RUN apk update --no-cache&&\ buildah cni-plugins iptables ip6tables --no-cache COPY --from=rclone /out/rclone /usr/bin/rclone COPY --from=argocd /out/argocd /usr/bin/argocd -COPY --from=kubectl /out/kubectl /usr/bin/kubectl