From 51d57e19d092f59ee7389a4423e4988de30bc44d Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 6 Apr 2021 23:04:28 -0700 Subject: [PATCH] Attempt to overcome Docker rate limiting on CI Update the common build script to pull buildpack images early using the authenticated CLI. See gh-25838 --- ci/scripts/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/scripts/common.sh b/ci/scripts/common.sh index ca7724f35d..ffa18ce7ab 100644 --- a/ci/scripts/common.sh +++ b/ci/scripts/common.sh @@ -7,6 +7,8 @@ fi if [[ -n $DOCKER_HUB_USERNAME ]]; then docker login -u $DOCKER_HUB_USERNAME -p $DOCKER_HUB_PASSWORD + docker pull paketobuildpacks/run:tiny-cnb + docker pull springci/spring-boot-cnb-builder:0.0.1 fi cleanup_maven_repo "org.springframework.boot"