From b4b222f8dd5eb12997956c0bccef7aca1674ba6b Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Tue, 24 Oct 2023 10:08:04 +0200 Subject: [PATCH] fix(debug): drop the --progress flag Newer docker engines do not support the flag anymore. Fixes #399 --- pongo.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pongo.sh b/pongo.sh index 341bfa1e..0a8af259 100755 --- a/pongo.sh +++ b/pongo.sh @@ -726,15 +726,16 @@ function build_image { fi msg "starting build of image '$KONG_TEST_IMAGE'" - local progress_type - if [[ "$PONGO_DEBUG" == "true" ]] ; then - progress_type=plain - else - progress_type=auto - fi + # local progress_type + # if [[ "$PONGO_DEBUG" == "true" ]] ; then + # progress_type=plain + # else + # progress_type=auto + # fi + # The following line caused issues on newer Docker releases, so we're disabling it for now + # --progress $progress_type \ $WINPTY_PREFIX docker build \ -f "$DOCKER_FILE" \ - --progress $progress_type \ --build-arg PONGO_VERSION="$PONGO_VERSION" \ --build-arg http_proxy \ --build-arg https_proxy \