Коммит
1a10b61d67
|
@ -0,0 +1,33 @@
|
|||
FROM debian:jessie
|
||||
|
||||
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
|
||||
|
||||
ENV AZURE_CLI_VERSION "0.10.14"
|
||||
ENV NODEJS_APT_ROOT "node_6.x"
|
||||
ENV NODEJS_VERSION "6.10.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
|
|
@ -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
|
42
LICENSE.md
42
LICENSE.md
|
@ -1,21 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Microsoft Azure
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Microsoft Azure
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.10.13/README.md
|
||||
0.10.14/README.md
|
||||
|
|
Загрузка…
Ссылка в новой задаче