aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-09-03 20:43:23 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-09-03 20:43:23 +0200
commita09ece9bbe9cda52487cf5b443619fec1b3e09ca (patch)
tree455aa5ebabcacc5669ac6c768ca0db3fa48e5bac
parent2b9cd4490fd4f16c09bb1c13a1cbe74b6662d4d4 (diff)
Rewrite git clone
Change-Id: I0e17233faaf8eddb263e90cb82b65335f1c9cf40 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--docker/Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index aa9bc243..87a59c34 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -4,8 +4,10 @@ ARG BRANCH=master
ARG OPENSTACK_TAG=stable/queens
RUN apk --no-cache add --update python py-pip bash git && \
- git clone https://gerrit.opnfv.org/gerrit/functest-xtesting /src/functest-xtesting && \
- (cd /src/functest-xtesting && git fetch origin $BRANCH && git checkout FETCH_HEAD) && \
+ git init /src/functest-xtesting && \
+ (cd /src/functest-xtesting && \
+ git fetch --tags https://gerrit.opnfv.org/gerrit/functest-xtesting $BRANCH && \
+ git checkout FETCH_HEAD) && \
pip install --no-cache-dir --src /src \
-chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \
-chttps://git.opnfv.org/functest-xtesting/plain/upper-constraints.txt?h=$BRANCH \