Skip to content

Commit

Permalink
Merge branch 'master' into issue/NT-fix-yarn-not-found
Browse files Browse the repository at this point in the history
  • Loading branch information
bkildow committed May 7, 2024
2 parents 2e4074d + b2541dd commit 57c9860
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 -o /tmp/install_kustomize.sh -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" && bash /tmp/install_kustomize.sh /bin
RUN cd /bin/ && curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash && if [ -e /usr/kustomize ]; then mv /usr/kustomize /bin; fi

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

0 comments on commit 57c9860

Please sign in to comment.