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 d76351a commit 78710cdCopy full SHA for 78710cd
Makefile
@@ -46,8 +46,7 @@ build: cmd/server/main.go
46
go build -ldflags $(LDFLAGS) -mod vendor -o dist/provider ./cmd/server/main.go
47
48
docker-build:
49
- docker build -t ${IMAGE_PATH} -f build/Dockerfile .
50
- # docker buildx build --platform=linux/amd64 -t ${IMAGE_PATH} -f build/Dockerfile .
+ docker buildx build --platform=linux/amd64,linux/arm64 -t ${IMAGE_PATH} -f build/Dockerfile .
51
52
docker-push:
53
docker push ${IMAGE_PATH}
@@ -60,4 +59,4 @@ print-docker-image-path:
60
59
61
test-coverage:
62
go test -coverprofile=cover.out ./…
63
- go tool cover -html=cover.out
+ go tool cover -html=cover.out
0 commit comments