From 9b772ff87b8881584934b8c06332fb3d7c289c58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Mon, 20 Jan 2025 00:20:54 +0100 Subject: [PATCH] Switch to plain progress --- Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 0cffe68..6129ab2 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -22,7 +22,7 @@ tasks: build: cmds: - docker pull {{ .BASEIMAGE }} - - docker build -t {{ .REPO }}:dev . + - docker build --progress plain -t {{ .REPO }}:dev . - docker tag {{ .REPO }}:dev {{ .REPO }}:{{ .VERSION }} - echo "JSON for admin:" - python3 generate_versions.py @@ -34,7 +34,7 @@ tasks: squashed: cmds: - docker pull {{ .BASEIMAGE }} - - docker build --squash -t {{ .REPO }}:dev-squashed . + - docker build --progress plain --squash -t {{ .REPO }}:dev-squashed . - docker tag {{ .REPO }}:dev-squashed {{ .REPO }}:{{ .VERSION }} - echo "JSON for admin:" - python3 generate_versions.py