From 2db0f4c16b2264931b0f61678b04e4d637ed1e58 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Fri, 31 Aug 2018 15:58:14 +0200 Subject: Avoid downloading git history MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It decreases container build duration. depth 1 is set only when TAG is not a commit id because github.com doesn't advertise commit ids. It switches to git.openstack.org as much as possible. Change-Id: I3ad7a38eda0f7023302d71bb55de23828120f599 Signed-off-by: Cédric Ollivier --- docker/tempest/Dockerfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'docker/tempest/Dockerfile') diff --git a/docker/tempest/Dockerfile b/docker/tempest/Dockerfile index dc9c9dede..dc142f456 100644 --- a/docker/tempest/Dockerfile +++ b/docker/tempest/Dockerfile @@ -12,25 +12,25 @@ RUN apk --no-cache add --virtual .build-deps --update \ case $OPENSTACK_TAG in \ master) \ wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \ - sed -E s/^tempest==+.*$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest#egg=tempest/ \ + sed -E s/^tempest==+.*$/-e\ git+https:\\/\\/git.openstack.org\\/openstack\\/tempest#egg=tempest/ \ > upper-constraints.txt ;; \ *) \ wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \ - sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \ + sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/git.openstack.org\\/openstack\\/tempest@\\1#egg=tempest/ \ > upper-constraints.txt ;; \ esac && \ wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH | \ sed -E /#egg=functest/d > upper-constraints.opnfv.txt && \ pip install --no-cache-dir --src /src -cupper-constraints.txt -cupper-constraints.opnfv.txt \ - -e git+https://github.com/openstack/requirements@$OPENSTACK_TAG#egg=openstack_requirements && \ - git clone https://github.com/openstack/os-faults.git /src/os-faults && \ - (cd /src/os-faults && git checkout $OS_FAULTS_TAG) && \ + -e git+https://git.openstack.org/openstack/requirements@$OPENSTACK_TAG#egg=openstack_requirements && \ + git clone --depth 1 https://git.openstack.org/openstack/os-faults.git /src/os-faults && \ + (cd /src/os-faults && git fetch --tags origin $OS_FAULTS_TAG && git checkout FETCH_HEAD) && \ update-requirements -s --source /src/openstack-requirements /src/os-faults/ && \ - git clone https://github.com/openstack/rally.git /src/rally && \ - (cd /src/rally && git checkout $RALLY_TAG) && \ + git clone --depth 1 https://git.openstack.org/openstack/rally.git /src/rally && \ + (cd /src/rally && git fetch --tags origin $RALLY_TAG && git checkout FETCH_HEAD) && \ update-requirements -s --source /src/openstack-requirements /src/rally/ && \ - git clone https://github.com/openstack/rally-openstack.git /src/rally-openstack && \ - (cd /src/rally-openstack && git checkout $RALLY_OPENSTACK_TAG) && \ + git clone --depth 1 https://git.openstack.org/openstack/rally-openstack.git /src/rally-openstack && \ + (cd /src/rally-openstack && git fetch --tags origin $RALLY_OPENSTACK_TAG && git checkout FETCH_HEAD) && \ update-requirements -s --source /src/openstack-requirements /src/rally-openstack && \ pip install --no-cache-dir --src /src -cupper-constraints.txt -cupper-constraints.opnfv.txt \ tempest /src/rally-openstack /src/os-faults && \ -- cgit 1.2.3-korg