aboutsummaryrefslogtreecommitdiffstats
path: root/docker/core/Dockerfile
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-02 15:30:00 +0200
commit0afa73e878f1d2c3f5d493b23ebc68f14f302166 (patch)
tree58af30b2e813eda7129b1375de866a4398d1ecaa /docker/core/Dockerfile
parent75e4e5c8055e845590128ecd27797c5e7315f371 (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> (cherry picked from commit 2f66167a9cca03222b86fb464a4ca8aeeb1a3cd6)
Diffstat (limited to 'docker/core/Dockerfile')
-rw-r--r--docker/core/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index f59bdb47..80cdeea5 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -5,8 +5,8 @@ ARG OPENSTACK_TAG=stable/pike
ARG OPNFV_TAG=stable/fraser
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 --depth 1 --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 \