Skip to content

Commit

Permalink
docker/bootstrap: remove --no-cache flag (#13785)
Browse files Browse the repository at this point in the history
Signed-off-by: Amir Abushareb <yields@icloud.com>
  • Loading branch information
yields authored Aug 28, 2023
1 parent 0eb01ea commit cb39323
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docker/bootstrap/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit cb39323

Please sign in to comment.