From 8a7ddd3b525edbccc4b701716c35b687a9d10674 Mon Sep 17 00:00:00 2001 From: Mike Aizatsky Date: Wed, 8 Mar 2017 10:10:12 -0800 Subject: [PATCH] [infra] slave image fixes --- infra/jenkins-cluster/slave/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/infra/jenkins-cluster/slave/Dockerfile b/infra/jenkins-cluster/slave/Dockerfile index f54e3ca13..6d46b6803 100644 --- a/infra/jenkins-cluster/slave/Dockerfile +++ b/infra/jenkins-cluster/slave/Dockerfile @@ -11,7 +11,9 @@ ENV DIND_COMMIT 3b5fac462d21ca164b3778647420016315289034 RUN apt-get update && apt-get upgrade -y # Needed for our build environment. -RUN apt-get install -y zip +RUN apt-get install -y zip git curl +RUN curl https://sdk.cloud.google.com | bash +ENV PATH "$PATH:/root/google-cloud-sdk/bin" ########## # Docker in the Docker. Follows official docker:dind image