diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-09-03 20:43:23 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-09-03 20:44:29 +0200 |
commit | 63cadb614057452d3ca51890580a6881cb1d4f1b (patch) | |
tree | 2b8f25457466b57462648301e35c2d0bffe7b447 /docker/Dockerfile | |
parent | 50fa66132638eaa921ea127552244999926ac68b (diff) |
Rewrite git clone
Change-Id: I0e17233faaf8eddb263e90cb82b65335f1c9cf40
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit a09ece9bbe9cda52487cf5b443619fec1b3e09ca)
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 7ebc419a..00a03545 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,8 +4,10 @@ ARG BRANCH=stable/fraser ARG OPENSTACK_TAG=stable/pike 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 \ |