Skip to content

Commit

Permalink
Adjust kustomize install so that it puts the binary into /bin
Browse files Browse the repository at this point in the history
  • Loading branch information
tekante committed May 7, 2024
1 parent f15eced commit f022263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN curl -s https://get.helm.sh/helm-v3.6.2-linux-"$(dpkg --print-architecture)"

# Install Kustomize
# https://kubectl.docs.kubernetes.io/installation/kustomize/binaries/
RUN cd /bin/ && curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash
RUN cd /bin/ && curl -o /tmp/install_kustomize.sh -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" && bash /tmp/install_kustomize.sh /bin

# Install AWS cli
COPY awscli.pubkey /tmp/
Expand Down

0 comments on commit f022263

Please sign in to comment.