Address PR feedback and remove Azure CLI from dockerfiles

We no longer need Azure CLI since publish is now via C#.
This commit is contained in:
Sridhar Periyasamy 2016-03-08 18:46:54 -08:00
parent 3edcab8eab
commit b99e40bfab
3 changed files with 4 additions and 15 deletions

View file

@ -24,12 +24,6 @@ RUN yum -q -y install tar git cmake clang make
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 100
RUN update-alternatives --set c++ /usr/bin/clang++
# Install azure cli. We need this to publish artifacts.
RUN yum -y install nodejs && \
yum -y install npm && \
npm install -g azure-cli
RUN yum -q -y install sudo
# Setup User to match Host User, and give superuser permissions