diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-08-31 15:58:14 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-09-01 17:31:48 +0200 |
commit | 2db0f4c16b2264931b0f61678b04e4d637ed1e58 (patch) | |
tree | 3d425802def53af7bde4537be00f16b38fe66d4f /docker/core/Dockerfile | |
parent | 3eec6556fa20e51d5e6596253393199469c83556 (diff) |
Avoid downloading git history
It decreases container build duration.
depth 1 is set only when TAG is not a commit id because
github.com doesn't advertise commit ids.
It switches to git.openstack.org as much as possible.
Change-Id: I3ad7a38eda0f7023302d71bb55de23828120f599
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/core/Dockerfile')
-rw-r--r-- | docker/core/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 9a5348cc8..af01347f1 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -15,8 +15,8 @@ RUN apk --no-cache add --update \ pip install --no-cache-dir --src /src -cupper-constraints.txt \ -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \ pip==$PIP_TAG && \ - git clone https://gerrit.opnfv.org/gerrit/functest /src/functest && \ - (cd /src/functest && git fetch origin $BRANCH && git checkout FETCH_HEAD) && \ + git clone --depth 1 https://gerrit.opnfv.org/gerrit/functest /src/functest && \ + (cd /src/functest && git fetch --tags origin $BRANCH && git checkout FETCH_HEAD) && \ pip install --no-cache-dir --src /src -cupper-constraints.txt \ -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \ /src/functest && \ |