Use Docker daemon 20.10.3 instead of 19.03.0

Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
This commit is contained in:
Takuya Noguchi 2021-02-15 08:31:08 +00:00
parent de5b1d6d9b
commit f2da17d538
2 changed files with 4 additions and 4 deletions

View file

@ -304,7 +304,7 @@ function build_custom_if_needed() {
full_image_name="$CI_REGISTRY_IMAGE:$build_image_name"
# This re-uses and builds an existing image if needed
docker pull "$full_image" || true
docker pull --quiet "$full_image" || true
docker_command=$(generate_command $@ --cache-from="$full_image_name" )
echo "Building $build_image_name with $docker_command"
eval $docker_command