Skip to content

Commit 97b2885

Browse files
authored
feat(build): more additions of --progress=plain to docker build (#528)
As a follow-up to 4572306 (#521) there are few more locations where '--progress=plain` needs to be added to 'docker build' commands to get full visibility on the output of the build.
1 parent 6d5d336 commit 97b2885

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

go/Makefile.common

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ endif
1515

1616
export DEBIAN_VERSION TAG_EXTENSION NPCAP_FILE
1717

18-
DOCKER_CMD := docker build
18+
DOCKER_CMD := docker build --progress=plain
1919

2020
build: copy-npcap copy-sdks
2121
@echo ">> Building $(REPOSITORY)/$(NAME):$(VERSION)$(SUFFIX)$(TAG_EXTENSION)"
@@ -36,6 +36,7 @@ build-arm: copy-sdks
3636
@echo ">> Building $(REPOSITORY)/$(NAME):$(VERSION)$(SUFFIX)$(TAG_EXTENSION)"
3737
@go run $(SELF_DIR)/../template.go -t Dockerfile.tmpl -o Dockerfile
3838
@docker build -t "$(REPOSITORY)/$(NAME):$(VERSION)$(SUFFIX)$(TAG_EXTENSION)" \
39+
--progress=plain \
3940
--build-arg REPOSITORY=$(REPOSITORY) \
4041
--build-arg VERSION=$(VERSION) \
4142
--build-arg DEBIAN_VERSION=$(DEBIAN_VERSION) \

0 commit comments

Comments
 (0)