You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN cd /bin/ && curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash && mv /usr/kustomize /bin
25
+
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
26
26
27
27
# Install AWS cli
28
28
COPY awscli.pubkey /tmp/
@@ -52,7 +52,7 @@ SHELL ["/bin/bash", "-c"]
52
52
# Install additional global npm dependencies
53
53
RUN \
54
54
# Initialize the user environment (this loads nvm)
55
-
. "$HOME"/.profile
55
+
. "$HOME"/.profile && npm install -g yarn
56
56
57
57
# IMPORTANT! Switching back to the root user as the last instruction.
0 commit comments