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