aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-08-14 13:09:00 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-08-14 13:10:23 +0200
commit444eae3d988414cf9d75af9f1e555996387e558a (patch)
tree04e01a79e6ab7ef496f2a72f3efd1ab128139c2d /docker
parent0928ebd8964bc1ef9f22b6598fcdf388d84e533d (diff)
Set rally-openstack tag
It also updates rally to the latest tag. Then it will allow updating pip if required (to clone refs). Change-Id: I6edb172954672780f627370b0dd0acf0754da635 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker')
-rw-r--r--docker/tempest/Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/docker/tempest/Dockerfile b/docker/tempest/Dockerfile
index a09a562fd..dc9c9dede 100644
--- a/docker/tempest/Dockerfile
+++ b/docker/tempest/Dockerfile
@@ -2,7 +2,8 @@ FROM opnfv/functest-core
ARG BRANCH=master
ARG OPENSTACK_TAG=stable/queens
-ARG RALLY_TAG=0.11.2
+ARG RALLY_TAG=1.1.0
+ARG RALLY_OPENSTACK_TAG=1.2.0
ARG OS_FAULTS_TAG=0.1.17
RUN apk --no-cache add --virtual .build-deps --update \
@@ -28,7 +29,8 @@ RUN apk --no-cache add --virtual .build-deps --update \
git clone https://github.com/openstack/rally.git /src/rally && \
(cd /src/rally && git checkout $RALLY_TAG) && \
update-requirements -s --source /src/openstack-requirements /src/rally/ && \
- git clone --depth 1 https://github.com/openstack/rally-openstack.git /src/rally-openstack && \
+ git clone https://github.com/openstack/rally-openstack.git /src/rally-openstack && \
+ (cd /src/rally-openstack && git checkout $RALLY_OPENSTACK_TAG) && \
update-requirements -s --source /src/openstack-requirements /src/rally-openstack && \
pip install --no-cache-dir --src /src -cupper-constraints.txt -cupper-constraints.opnfv.txt \
tempest /src/rally-openstack /src/os-faults && \