Skip to content

Commit

Permalink
Fix makefile not adding suffix to binary, which breaks docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsonov committed Nov 4, 2024
1 parent 43ca49e commit bef72a7
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
@@ -1,5 +1,5 @@
build:
GOARCH=amd64 GOOS=linux go build -ldflags "-s -w" -o bin/spot-handler .
GOARCH=amd64 GOOS=linux go build -ldflags "-s -w" -o bin/spot-handler-amd64 .
docker build --platform=linux/amd64 -t us-docker.pkg.dev/castai-hub/library/spot-handler:$(VERSION) .

push:
Expand Down

0 comments on commit bef72a7

Please sign in to comment.