diff options
Diffstat (limited to 'docker/restapi/Dockerfile')
-rw-r--r-- | docker/restapi/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/restapi/Dockerfile b/docker/restapi/Dockerfile index b36525f95..15b83fe3f 100644 --- a/docker/restapi/Dockerfile +++ b/docker/restapi/Dockerfile @@ -28,7 +28,7 @@ RUN apk --no-cache add --update python3 sshpass \ git clone --depth 1 https://github.com/openstack/rally.git -b $RALLY_TAG /src/rally && \ update-requirements -s --source /src/openstack-requirements /src/rally/ && \ git clone https://github.com/openstack/refstack-client.git /src/refstack-client && \ - (cd src/refstack-client && git checkout $REFSTACK_TAG) && \ + (cd /src/refstack-client && git checkout $REFSTACK_TAG) && \ update-requirements -s --source /src/openstack-requirements /src/refstack-client/ && \ pip install --no-cache-dir --src /src -cupper-constraints.txt \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \ @@ -40,7 +40,7 @@ RUN apk --no-cache add --update python3 sshpass \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \ doctor-tests && \ git clone https://git.opendaylight.org/gerrit/p/integration/test.git /src/odl_test && \ - (cd src/odl_test && git checkout $ODL_TAG) && \ + (cd /src/odl_test && git checkout $ODL_TAG) && \ 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 && \ |