Fix the wrong instruction for pip

Change-Id: If9214859777bef63da876dedb26eb7bd6dd3c8f8
Closes-Bug: #1488714
This commit is contained in:
Kai Qiang Wu(Kennan) 2015-08-26 02:00:00 +00:00
parent 2b00ba4119
commit 93d709e634

View File

@ -28,7 +28,7 @@ RUN pip install shade
RUN git clone https://github.com/ansible/ansible.git \
&& cd ansible \
&& git submodule update --init --recursive \
&& pip --install-option="--install-scripts=/usr/bin" install .
&& pip install --install-option="--install-scripts=/usr/bin" .
RUN mkdir -p /etc/ansible /usr/share/ansible \
&& echo 'localhost ansible_connection=local' > /etc/ansible/hosts