Skip to content

Commit ecddcea

Browse files
infra: remove -pull from all.sh (#14335)
in #13964 `--pull` was added to `docker build`. However, this causes issues when developing the images locally, as we always end up pulling upstream images causing issues when building changes that carry through several base images. Removing `--pull` from this. Was running into this when debugging #14315
1 parent 92ad69d commit ecddcea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

infra/base-images/all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ for image_name in ${IMAGE_LIST}; do
6262
fi
6363

6464
echo "Building ${tag} from ${dockerfile}..."
65-
docker build --pull -t "${tag}" -f "${dockerfile}" "${image_dir}"
65+
docker build -t "${tag}" -f "${dockerfile}" "${image_dir}"
6666
done
6767

68-
echo "All builds for version ${VERSION_TAG} completed successfully."
68+
echo "All builds for version ${VERSION_TAG} completed successfully."

0 commit comments

Comments
 (0)