aboutsummaryrefslogtreecommitdiffstats
path: root/docker/core/Dockerfile
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-09-03 20:54:58 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-09-03 21:07:32 +0200
commit951fc46b7499d9f230c6e8f0e1629ac2325c5ad7 (patch)
treed3e92278aea5df2a8f42184245fcfde27170c817 /docker/core/Dockerfile
parent0afa73e878f1d2c3f5d493b23ebc68f14f302166 (diff)
Rewrite git clones
Change-Id: I04c60b6c10ccd7b7e939002505e6e43e9c98eae7 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit ca3c9cf6f57c87aee8c6f0b93f70d84e3df736de)
Diffstat (limited to 'docker/core/Dockerfile')
-rw-r--r--docker/core/Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index 80cdeea5..3c4963d5 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -5,8 +5,10 @@ ARG OPENSTACK_TAG=stable/pike
ARG OPNFV_TAG=stable/fraser
RUN apk --no-cache add --update python py-pip bash git grep && \
- 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) && \
+ git init /src/functest-kubernetes && \
+ (cd /src/functest-kubernetes && \
+ git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $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 \