Skip to content

Commit e0d572c

Browse files
committed
build: Don't automatically pull images when building
Automatically pulling is good for getting an up-to-date base image, but it's too easy to trip docker hub's rate limiting and get blocked, which then prevents the builds from proceeding.
1 parent 01dcabb commit e0d572c

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

build/scripts/image.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,6 @@ fi
8686

8787
cmd="$DOCKER build -f $distro/Dockerfile "
8888

89-
if [[ "$distro" != "ubuntu-allcross" ]]; then
90-
cmd+="--pull "
91-
fi
92-
9389
if [[ -n "$http_proxy" ]]; then
9490
cmd+="--build-arg http_proxy=$http_proxy "
9591
fi

0 commit comments

Comments
 (0)