From 5679de6b174d1070251a01c7aa3cd71a7eaab1c2 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Tue, 27 Oct 2020 10:51:06 +0100 Subject: [PATCH] Add Kompose, Skaffold, and Tilt --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4ff21c0..991c6f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,6 +57,11 @@ RUN curl -sSL https://github.com/derailed/k9s/releases/latest/download/k9s_$(una | tar -zxvf- -C /usr/local/bin k9s RUN curl -sSL https://github.com/derailed/popeye/releases/latest/download/popeye_$(uname -s)_$(uname -m).tar.gz \ | tar -zxvf- -C /usr/local/bin popeye +COPY --from=tiltdev/tilt /usr/local/bin/tilt /usr/local/bin/tilt +RUN curl -Lo /usr/local/bin/skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 \ + && chmod +x /usr/local/bin/skaffold +RUN curl -Lo /usr/local/bin/kompose https://github.com/kubernetes/kompose/releases/latest/download/kompose-linux-amd64 \ + && chmod +x /usr/local/bin/kompose RUN kubectl config set-context kubernetes --namespace=default \ && kubectl config use-context kubernetes COPY --from=jid /go/bin/jid /usr/local/bin/jid