From 8f530b1b0cfcbe0ae96e80a8fb9ff6b0007d6eef Mon Sep 17 00:00:00 2001 From: LingxianKong Date: Thu, 23 Apr 2015 22:53:15 +0800 Subject: [PATCH] Install optional-requirement packages for Rally docker image Ensure python-mistralclient, python-muranoclient or other packages are included in the Rally docker image, so user could do benchmarking without extra work. Change-Id: I246a961d02308aee87a77098bdd631cf1a3bbd0c Closes-Bug: #1447648 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a6191755..e2eba91b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN apt-get update && \ libxml2-dev libxslt1-dev libssl-dev &&\ cd /tmp/rally &&\ ./install_rally.sh &&\ + pip install -r optional-requirements.txt &&\ sed 's|#*connection *=.*|connection = sqlite:////home/rally/.rally.sqlite|' -i /etc/rally/rally.conf &&\ apt-get -y remove libssl-dev libffi-dev python-dev libxml2-dev \ libxslt1-dev build-essential gcc-4.8 python3 && \