From 91439f9b9b5d56eca722f029c9dca1c7a64cbffc Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Fri, 4 Apr 2025 13:35:43 -0700 Subject: [PATCH] weaveworks/eksctl:v0.207.0 moved eksctl CLI to root dir; copy from there --- dockerfiles/eks-deployer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/eks-deployer/Dockerfile b/dockerfiles/eks-deployer/Dockerfile index ca85a26db..ecfbbd1f0 100644 --- a/dockerfiles/eks-deployer/Dockerfile +++ b/dockerfiles/eks-deployer/Dockerfile @@ -1,4 +1,4 @@ -# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved. +# Copyright 2020-2025 the Pinniped contributors. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 # For deploying an EKS cluster and setting it up to run our tests. @@ -7,7 +7,7 @@ FROM weaveworks/eksctl:v0.207.0 AS eksctl FROM mikefarah/yq:4.45.1 AS yq FROM amazon/aws-cli:2.25.10 RUN yum update -y && yum install -y jq && yum install -y perl-Digest-SHA && yum clean all -COPY --from=eksctl /usr/local/bin /usr/local/bin +COPY --from=eksctl eksctl /usr/local/bin/eksctl COPY --from=yq /usr/bin/yq /usr/local/bin/yq # Install Carvel tools.