From b09411493ca394a6ecb914dcd29b372859dd0989 Mon Sep 17 00:00:00 2001 From: Kam Kasravi Date: Mon, 17 Sep 2018 14:02:23 -0700 Subject: [PATCH] upgrade ksonnet to 0.12.0 and jsonnet to 0.11.2 (#201) --- images/Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/images/Dockerfile b/images/Dockerfile index eb8c017fbb1..7121fcf87bd 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -92,19 +92,19 @@ RUN cd /tmp && \ # Install ksonnet RUN cd /tmp && \ wget -O ks.tar.gz \ - https://github.com/ksonnet/ksonnet/releases/download/v0.11.0/ks_0.11.0_linux_amd64.tar.gz && \ + https://github.com/ksonnet/ksonnet/releases/download/v0.12.0/ks_0.12.0_linux_amd64.tar.gz && \ tar -xvf ks.tar.gz && \ - mv ks_0.11.0_linux_amd64/ks /usr/local/bin && \ + mv ks_0.12.0_linux_amd64/ks /usr/local/bin && \ chmod a+x /usr/local/bin/ks RUN cd /tmp && \ - wget https://github.com/google/jsonnet/archive/v0.9.5.tar.gz && \ - tar -xvf v0.9.5.tar.gz && \ - cd jsonnet-0.9.5 && \ + wget https://github.com/google/jsonnet/archive/v0.11.2.tar.gz && \ + tar -xvf v0.11.2.tar.gz && \ + cd jsonnet-0.11.2 && \ make && \ mv jsonnet /usr/local/bin && \ - rm -rf /tmp/v0.9.5.tar.gz && \ - rm -rf /tmp/jsonnet-0.9.5 + rm -rf /tmp/v0.11.2.tar.gz && \ + rm -rf /tmp/jsonnet-0.11.2 COPY ./Pipfile ./Pipfile.lock /tmp/