diff options
author | 2020-06-08 10:21:59 +0200 | |
---|---|---|
committer | 2020-06-08 10:21:59 +0200 | |
commit | 5169cd72511838af0cedd9ce6b5c3baba45d8f6c (patch) | |
tree | 958543a1843a247833c9b6aa211483177f0f375a /docker/core/Dockerfile | |
parent | 777cff28daff5514f21ad04198afbfbc5b5ba7cb (diff) |
Remove cache dir and force /src as src dst dir
Change-Id: I43846aa04e9e9951fc55543b8d2d2fda7c39bb64
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/core/Dockerfile')
-rw-r--r-- | docker/core/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 5748c00f..8eb1c652 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -11,7 +11,7 @@ RUN apk --no-cache add --update python3 py3-pip bash git grep mailcap && \ (cd /src/functest-kubernetes && \ git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \ git checkout FETCH_HEAD) && \ - pip3 install \ + 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 && \ |