From f84bb3ec211bdfeacd7b176a894ec0841f004bb9 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 20 Apr 2023 16:13:41 -0600 Subject: [PATCH] Disable buildkit --- scripts/run-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-test.sh b/scripts/run-test.sh index 349b91d..e5c693f 100755 --- a/scripts/run-test.sh +++ b/scripts/run-test.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) cd ${SCRIPT_DIR} -docker build -t dboreham/test-container:test -f ../container/Dockerfile ../container +DOCKER_BUILDKIT=0 docker build -t dboreham/test-container:test -f ../container/Dockerfile ../container echo "Images in the registry:" docker image ls echo "Running the container I built:"