summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-12-21 09:16:59 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-12-21 09:17:00 +0000
commit821a07c25a55ee60993c2864e0930338d67f4d21 (patch)
treecc56f9a00710a8c087c9c14c56d5e50d7205d972
parent4cce1dde601ce15dad888644a96ff343064dc29d (diff)
parent35be4af26975e1951de68d5a2ac36516cadde839 (diff)
Merge "Force python2.7 when creating venv for refstack" into stable/euphrates
-rw-r--r--docker/restapi/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/restapi/Dockerfile b/docker/restapi/Dockerfile
index bd3cdebbb..12abaf738 100644
--- a/docker/restapi/Dockerfile
+++ b/docker/restapi/Dockerfile
@@ -33,7 +33,7 @@ RUN apk --no-cache add --update nodejs nodejs-npm python3 sshpass \
git clone --depth 1 -b $FDS_TAG https://gerrit.opnfv.org/gerrit/fds /src/fds && \
git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test /src/vims-test && \
ln -s /src/tempest /src/refstack-client/.tempest && \
- virtualenv --system-site-packages /src/tempest/.venv && \
+ virtualenv --system-site-packages /src/tempest/.venv --python=python2.7 && \
(cd /src/promise/source && npm install) && \
(cd /src/vims-test && bundle config build.nokogiri --use-system-libraries && bundle install --system) && \
npm -g install npm@latest && \