File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ BINARY_DEST_DIR := image/bin
1515
1616build : check-docker
1717 for i in $( BINARIES) ; do \
18- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -v - ldflags ' -s' -o $(BINARY_DEST_DIR ) /$$ i bin/$$ i.go || exit 1; \
18+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags ' -s' -o $(BINARY_DEST_DIR ) /$$ i bin/$$ i.go || exit 1; \
1919 $(call check-static-binary,$(BINARY_DEST_DIR ) /$$i) \
2020 done
2121 docker build -t $(IMAGE ) image
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ BUILD_IMAGE = $(COMPONENT)-build
1313BINARY_DEST_DIR = image/bin
1414
1515build : check-docker
16- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -v - ldflags ' -s' -o $(BINARY_DEST_DIR ) /boot main.go || exit 1
16+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags ' -s' -o $(BINARY_DEST_DIR ) /boot main.go || exit 1
1717 $(call check-static-binary,$(BINARY_DEST_DIR ) /boot)
1818 docker build -t $(BUILD_IMAGE ) .
1919 docker cp ` docker run -d $( BUILD_IMAGE) ` :/usr/local/bin/redis-server $(BINARY_DEST_DIR ) /
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ DEV_IMAGE = $(DEV_REGISTRY)/$(IMAGE)
1414BINARY_DEST_DIR = image/bin
1515
1616build : check-docker
17- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -v - ldflags ' -s' -o $(BINARY_DEST_DIR ) /logger github.com/deis/deis/logger || exit 1
17+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags ' -s' -o $(BINARY_DEST_DIR ) /logger github.com/deis/deis/logger || exit 1
1818 $(call check-static-binary,$(BINARY_DEST_DIR ) /logger)
1919 docker build -t $(IMAGE ) image
2020
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ RELEASE_IMAGE := $(DOCKER_IMAGE):$(BUILD_TAG)
1313DEV_DOCKER_IMAGE := $(DEV_REGISTRY ) /$(RELEASE_IMAGE )
1414
1515build : check-docker
16- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -v - ldflags ' -s' -o image/logspout
16+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags ' -s' -o image/logspout
1717 $(call check-static-binary,image/logspout)
1818 docker build -t $(RELEASE_IMAGE ) image
1919
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ REMOTE_IMAGE := $(REGISTRY)/$(RELEASE_IMAGE)
1414BINARY_DEST_DIR = image/bin
1515
1616build : check-docker
17- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -v - ldflags ' -s' -o $(BINARY_DEST_DIR ) /publisher github.com/deis/deis/publisher || exit 1
17+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags ' -s' -o $(BINARY_DEST_DIR ) /publisher github.com/deis/deis/publisher || exit 1
1818 $(call check-static-binary,$(BINARY_DEST_DIR ) /publisher)
1919 docker build -t $(RELEASE_IMAGE ) image
2020
You can’t perform that action at this time.
0 commit comments