From 93d709e6345b0e57cd1fe1090af511e50d9d6f5f Mon Sep 17 00:00:00 2001
From: "Kai Qiang Wu(Kennan)" <wkq5325@gmail.com>
Date: Wed, 26 Aug 2015 02:00:00 +0000
Subject: [PATCH] Fix the wrong instruction for pip

Change-Id: If9214859777bef63da876dedb26eb7bd6dd3c8f8
Closes-Bug: #1488714
---
 docker_templates/kolla-ansible/Dockerfile.j2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker_templates/kolla-ansible/Dockerfile.j2 b/docker_templates/kolla-ansible/Dockerfile.j2
index 78713988b..547694719 100644
--- a/docker_templates/kolla-ansible/Dockerfile.j2
+++ b/docker_templates/kolla-ansible/Dockerfile.j2
@@ -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
-- 
GitLab