diff options
author | zhifeng.jiang <jiang.zhifeng@zte.com.cn> | 2016-09-10 10:07:13 +0800 |
---|---|---|
committer | zhifeng.jiang <jiang.zhifeng@zte.com.cn> | 2016-09-10 10:07:13 +0800 |
commit | f7d144986a028739e7aa136f824e4582c42896f3 (patch) | |
tree | f8226a105ac47019f88e72e5637021ed8c0f196d /docker | |
parent | 3a987ca748287d250d7975a853222917f001469a (diff) |
Install the requirement packages in docker
modification:
remove the packages.pip which duplicate with requirement.txt
pip install requirement.txt in docker
JIRA:QTIP-97
Change-Id: I6b9ac316cb7401b69c71fc5b1807b8d8a7ccd1bb
Signed-off-by: zhifeng.jiang <jiang.zhifeng@zte.com.cn>
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 2 | ||||
-rw-r--r-- | docker/packages.pip | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 8ec775eb..2adeba6e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -54,6 +54,6 @@ RUN git config --global http.sslVerify false RUN git clone https://gerrit.opnfv.org/gerrit/qtip $REPOS_DIR/qtip RUN git clone https://gerrit.opnfv.org/gerrit/releng $REPOS_DIR/releng -RUN pip install -r $REPOS_DIR/qtip/docker/packages.pip +RUN pip install -r $REPOS_DIR/qtip/requirements.txt diff --git a/docker/packages.pip b/docker/packages.pip deleted file mode 100644 index cc048389..00000000 --- a/docker/packages.pip +++ /dev/null @@ -1,8 +0,0 @@ -pyyaml==3.10 -python-neutronclient==2.6.0 -python-novaclient==2.28.1 -python-glanceclient==1.1.0 -python-cinderclient==1.4.0 -python-heatclient==0.6.0 -python-keystoneclient==1.6.0 -reportlab==3.0 |