diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-04-20 14:30:56 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-04-20 14:33:14 +0200 |
commit | 0fcd90ca9349456ddf00218658c4d55d5106bac9 (patch) | |
tree | d11ee1930997e3c3df9723ff415894ad7fb39989 | |
parent | 2c499c505ec89fec06041d589aaf5d7c31c66a5e (diff) |
Install setuptools_scm before xrallystable/jerma
Else upper-constraints basically fails.
Change-Id: I022f101e2ed44708afd0b88d47b77d2f7ca85458
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 75170fc0b528c7e182b8164d5905fcbaa6957faa)
-rw-r--r-- | docker/core/Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 2134fac3..2112d1b4 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -19,6 +19,10 @@ RUN apk -U upgrade && \ pip3 install --no-cache-dir --src /src \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \ -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \ + setuptools_scm && \ + pip3 install --no-cache-dir --src /src \ + -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \ + -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \ /src/functest-kubernetes && \ (cd /src/rally && patch -p1 < /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch) && \ (cd /usr/lib/python3.7/site-packages/xrally_kubernetes/ && \ |