Open mathias-goebel opened 3 days ago
/assign
I believe the issue is the wrong docker image being used in the make release
recipe. The following diff for Makefile
I believe fixes it:
- golang:$(GO_VERSION) \
- /bin/bash -c "make -f /go/src/$(PKG)/Makefile release-docker-build GOARCH=$(GOARCH) GOOS=$(GOOS) CGO_ENABLED=$(CGO_ENABLED)"
+ docker.io/golang:$(GO_VERSION)-alpine \
+ sh -c "make -f /go/src/$(PKG)/Makefile release-docker-build GOARCH=$(GOARCH) GOOS=$(GOOS) CGO_ENABLED=$(CGO_ENABLED)"
Would you mind testing with this patch applied and confirming?
sorry, there is no make
in docker.io/golang:$(GO_VERSION)-alpine
but works as expected with
-buildvcs=false
added toMakefile
line 67.