aboutsummaryrefslogtreecommitdiffstats
path: root/docker/core
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-08-31 16:04:37 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-09-01 21:20:22 +0200
commit2f66167a9cca03222b86fb464a4ca8aeeb1a3cd6 (patch)
tree6a42bb0f1e20579924d6fdc5a04a345cb9bcaa23 /docker/core
parent903393322806f197455bb0af7f486b33d0b19b69 (diff)
Avoid downloading git history
It decreases build duration because of kubernetes history. Change-Id: I650c271e123b97e7350933b32d05b6b0781a79e9 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/core')
-rw-r--r--docker/core/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index d48980de..52282813 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -5,8 +5,8 @@ ARG OPENSTACK_TAG=stable/queens
ARG OPNFV_TAG=master
RUN apk --no-cache add --update python py-pip bash git grep && \
- git clone https://gerrit.opnfv.org/gerrit/functest-kubernetes /src/functest-kubernetes && \
- (cd /src/functest-kubernetes && git fetch origin $BRANCH && git checkout FETCH_HEAD) && \
+ git clone --depth 1 https://gerrit.opnfv.org/gerrit/functest-kubernetes /src/functest-kubernetes && \
+ (cd /src/functest-kubernetes && git fetch --tags origin $BRANCH && git checkout FETCH_HEAD) && \
pip install \
-chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \
-chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \