From 82d232d4ebf285858e526fd51be12f21c6b200ae Mon Sep 17 00:00:00 2001 From: Amar Zavery Date: Wed, 14 Dec 2016 10:12:55 -0800 Subject: [PATCH] changes for 0.10.8 --- 0.10.8/Dockerfile | 33 +++++++++++++++++++++++++++++++++ 0.10.8/README.md | 5 +++++ README.md | 2 +- 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 0.10.8/Dockerfile create mode 100644 0.10.8/README.md diff --git a/0.10.8/Dockerfile b/0.10.8/Dockerfile new file mode 100644 index 0000000..a42a1e1 --- /dev/null +++ b/0.10.8/Dockerfile @@ -0,0 +1,33 @@ +FROM debian:jessie + +RUN rm /bin/sh && ln -s /bin/bash /bin/sh + +ENV AZURE_CLI_VERSION "0.10.8" +ENV NODEJS_APT_ROOT "node_4.x" +ENV NODEJS_VERSION "4.7.0" + +RUN apt-get update -qq && \ + apt-get install -qqy --no-install-recommends\ + apt-transport-https \ + build-essential \ + curl \ + ca-certificates \ + git \ + lsb-release \ + python-all \ + rlwrap \ + vim \ + nano \ + jq && \ + rm -rf /var/lib/apt/lists/* && \ + curl https://deb.nodesource.com/${NODEJS_APT_ROOT}/pool/main/n/nodejs/nodejs_${NODEJS_VERSION}-1nodesource1~jessie1_amd64.deb > node.deb && \ + dpkg -i node.deb && \ + rm node.deb && \ + npm install --global azure-cli@${AZURE_CLI_VERSION} && \ + azure --completion >> ~/azure.completion.sh && \ + echo 'source ~/azure.completion.sh' >> ~/.bashrc && \ + azure + +RUN azure config mode arm + +ENV EDITOR vim diff --git a/0.10.8/README.md b/0.10.8/README.md new file mode 100644 index 0000000..20c1653 --- /dev/null +++ b/0.10.8/README.md @@ -0,0 +1,5 @@ +# Microsoft Azure CLI Docker Image + +This Docker image has Microsoft Azure CLI installed and prepared. To run it, execute: + + $ docker run -it microsoft/azure-cli diff --git a/README.md b/README.md index 51d49a3..f72fd1c 120000 --- a/README.md +++ b/README.md @@ -1 +1 @@ -0.10.7/README.md +0.10.8/README.md