We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51296f8 commit 63c8be6Copy full SHA for 63c8be6
Makefile
@@ -1,4 +1,4 @@
1
-VERSION=2.3.0
+VERSION=2.3.1
2
3
.PHONY: docker dockerpublish test run run-demo
4
@@ -14,9 +14,11 @@ test:
14
go test -vet=all ./...
15
16
docker:
17
- docker build -t aoepeople/vistecture-dashboard .
+ docker buildx build --tag aoepeople/vistecture-dashboard:latest --platform linux/amd64 .
18
19
-dockerpublish: docker
20
- docker tag aoepeople/vistecture-dashboard:latest aoepeople/vistecture-dashboard:$(VERSION)
21
- docker push aoepeople/vistecture-dashboard:latest
22
- docker push aoepeople/vistecture-dashboard:$(VERSION)
+dockerpublish:
+ docker buildx build \
+ --push \
+ --tag aoepeople/vistecture-dashboard:latest \
23
+ --tag aoepeople/vistecture-dashboard:$(VERSION) \
24
+ --platform linux/amd64 .
0 commit comments