We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3e334b commit bd504cdCopy full SHA for bd504cd
Makefile
@@ -28,5 +28,7 @@ clean:
28
# Cross compilation
29
build-linux:
30
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 $(GOBUILD) -o $(BINARY_NAME) -ldflags "-X main.version=$(VERSION) -X main.commit=$(COMMIT) -s -w" -v
31
+build-apple-silicon:
32
+ CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 $(GOBUILD) -o $(BINARY_NAME) -ldflags "-X main.version=$(VERSION) -X main.commit=$(COMMIT) -s -w" -v
33
build-docker: build-linux
34
docker build -t quay.io/fairwinds/reckoner:go-dev -f Dockerfile .
0 commit comments