We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac40db commit bb9dbbfCopy full SHA for bb9dbbf
Makefile
@@ -16,7 +16,7 @@ CONTAINER ?= pramsey/$(PROGRAM)
16
DATE ?= $(shell date +%Y%m%d)
17
BASE_REGISTRY ?= registry.access.redhat.com
18
BASE_IMAGE ?= ubi8-micro
19
-SYSTEMARCH = $(shell uname -i)
+SYSTEMARCH = $(shell uname -m)
20
21
ifeq ($(SYSTEMARCH), x86_64)
22
TARGETARCH ?= amd64
@@ -54,7 +54,7 @@ docs: ## Generate docs
54
55
build: $(PROGRAM) ## Build a local binary using APPVERSION parameter or CI as default
56
57
-$(PROGRAM): $(GOFILES)
+$(PROGRAM): $(GOFILES)
58
go build -v -ldflags "-s -w -X github.com/CrunchyData/pg_featureserv/conf.setVersion=$(APPVERSION)"
59
60
bin-for-docker: $(GOFILES) ## Build a local binary using APPVERSION parameter or CI as default (to be used in docker image)
0 commit comments