diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-06-21 18:20:16 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-06-21 18:20:16 +0200 |
commit | c510c3f912fe095af08705eb694bb1f0a226f38c (patch) | |
tree | eca07b8369601b366c109ac218caea33089bc41a | |
parent | eb864cc183005479e4fd00d3b849034fcab5bffc (diff) |
Install third-party requirements again
Change-Id: Ic04969a56a4e35d5caf12a6a9bc0323bcf3a26d2
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | docker/features/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile index 0d8a6a518..dcd908964 100644 --- a/docker/features/Dockerfile +++ b/docker/features/Dockerfile @@ -15,6 +15,9 @@ RUN apk --no-cache add --update python3 sshpass && \ wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH | \ sed -E /#egg=functest/d > upper-constraints.opnfv.txt && \ git clone --depth 1 -b $FDS_TAG https://gerrit.opnfv.org/gerrit/fds /src/fds && \ + pip install --no-cache-dir --src /src -cupper-constraints.txt \ + -cupper-constraints.opnfv.txt \ + -rthirdparty-requirements.txt && \ python3 -m pip install --no-cache-dir --src /src -cupper-constraints.txt -cupper-constraints.opnfv.txt \ doctor-tests && \ rm -r upper-constraints.txt upper-constraints.opnfv.txt thirdparty-requirements.txt /src/fds/.git && \ |