Skip to content

Commit

Permalink
chore: Fix make build for non-x86 machines (#97)
Browse files Browse the repository at this point in the history
Seems like loadimpact/k6 is not available for linux/amd64
  • Loading branch information
zerok authored Dec 7, 2023
1 parent 9b02112 commit 4287390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dev:
go build -o ./flagger-k6-webhook cmd/main.go

build:
docker build -t $(IMAGE) .
docker build --platform=linux/amd64 -t $(IMAGE) .
docker tag $(IMAGE) $(IMAGE):$(VERSION)

push: build
Expand Down

0 comments on commit 4287390

Please sign in to comment.