From cb3932318ee646584ce030a0cf3033ac6fd29517 Mon Sep 17 00:00:00 2001 From: Amir Abushareb Date: Mon, 28 Aug 2023 09:07:02 +0100 Subject: [PATCH] docker/bootstrap: remove --no-cache flag (#13785) Signed-off-by: Amir Abushareb --- docker/bootstrap/build.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docker/bootstrap/build.sh b/docker/bootstrap/build.sh index 8cc6a151606..d84e37fced9 100755 --- a/docker/bootstrap/build.sh +++ b/docker/bootstrap/build.sh @@ -60,5 +60,10 @@ while [ $# -gt 0 ]; do done if [ -f "docker/bootstrap/Dockerfile.$flavor" ]; then - docker build --no-cache -f docker/bootstrap/Dockerfile.$flavor -t $image --build-arg bootstrap_version=$version --build-arg image=$base_image . + docker build \ + -f docker/bootstrap/Dockerfile.$flavor \ + -t $image \ + --build-arg bootstrap_version=$version \ + --build-arg image=$base_image \ + . fi