From ba4258dc9bbdb6e98d5b65f66fcb21af0d970c23 Mon Sep 17 00:00:00 2001 From: Tit Petric Date: Wed, 4 Oct 2023 12:25:43 +0200 Subject: [PATCH] Update taskfile with docker build --no-cache and --progress --- Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index c41ba815606..3fef278c20d 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -11,8 +11,8 @@ tasks: plugin-compiler:build: desc: "Build plugin compiler" cmds: - - docker build --build-arg GOLANG_CROSS=1.15-el7 -t internal/plugin-compiler-el7 -f ci/images/plugin-compiler/Dockerfile . - - docker build --build-arg GOLANG_CROSS=1.15 -t internal/plugin-compiler -f ci/images/plugin-compiler/Dockerfile . + - docker build --progress=plain --no-cache --build-arg GOLANG_CROSS=1.15-el7 -t internal/plugin-compiler-el7 -f ci/images/plugin-compiler/Dockerfile . + - docker build --progress=plain --no-cache --build-arg GOLANG_CROSS=1.15 -t internal/plugin-compiler -f ci/images/plugin-compiler/Dockerfile . plugin-compiler:test: desc: "Test plugin compiler"