diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-06-08 10:21:59 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-06-08 10:23:25 +0200 |
commit | fc9a6d992c8997eabfe6a0da282c98d08a2643a2 (patch) | |
tree | 2948ff924fb072745cb7f5a6d0d0f52253691f9a | |
parent | ea86a27da94dde30394c19e6fb57f2c0961fadee (diff) |
Remove cache dir and force /src as src dst dir
Change-Id: I43846aa04e9e9951fc55543b8d2d2fda7c39bb64
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 5169cd72511838af0cedd9ce6b5c3baba45d8f6c)
-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 16477d5f..760d6148 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -11,7 +11,7 @@ RUN apk --no-cache add --update python py-pip bash git grep mailcap && \ (cd /src/functest-kubernetes && \ git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \ git checkout FETCH_HEAD) && \ - pip install \ + pip 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 && \ |