From e31dae6beecf0ab7c81a6863a7a74bcd62692d1b Mon Sep 17 00:00:00 2001 From: Sridhar Periyasamy Date: Tue, 10 Nov 2015 17:49:33 -0800 Subject: [PATCH] Add '-y' to prevent prompts during installation. --- scripts/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile index 1b3e781f9..1f7b1ca76 100644 --- a/scripts/docker/Dockerfile +++ b/scripts/docker/Dockerfile @@ -18,8 +18,8 @@ RUN echo "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.6 main" | tee RUN update-alternatives --set c++ /usr/bin/clang++ # Install azure cli. We need this to publish atrifacts. -RUN apt-get install nodejs-legacy && \ - apt-get install npm && \ +RUN apt-get -y install nodejs-legacy && \ + apt-get -y install npm && \ npm install -g azure-cli # Set working directory