You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOCAL := localhost:5000/leanix-dev/$(PROJECT):latest
GOOS ?= linux
GOARCH ?= amd64
.PHONY: all
local: clean test build image push
clean:
$(RM) bin/$(PROJECT)
build:
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build -o bin/$(PROJECT) -ldflags '-X $(shell go list -m)/pkg/version.VERSION=${VERSION} -X $(shell go list -m)/pkg/version.FULL_VERSION=${FULL_VERSION} -extldflags "-static"' ./cmd/$(PROJECT)/main.go