From 9a5bc5d7f81165980c6e3d2ec5755cfd2f904d9a Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Wed, 7 Jun 2017 17:15:28 +0200 Subject: [PATCH] Installed cf-cli on the Jenkins master --- jenkins/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins/Dockerfile b/jenkins/Dockerfile index 4f5795c3..fcbdb4b7 100644 --- a/jenkins/Dockerfile +++ b/jenkins/Dockerfile @@ -34,8 +34,8 @@ RUN apt-get update && \ # Install cf-cli RUN apt-get -y install apt-transport-https -RUN wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add - -RUN echo "deb http://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list +RUN wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | apt-key add - +RUN echo "deb http://packages.cloudfoundry.org/debian stable main" | tee /etc/apt/sources.list.d/cloudfoundry-cli.list RUN apt-get -y update RUN apt-get -y install cf-cli