Skip to content

Commit 63c8be6

Browse files
chore: bump version for release, enforce docker build amd64 (#38)
* chore: bump version to prepare release * chore: bump version, enforce am64 as docker build platform
1 parent 51296f8 commit 63c8be6

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Makefile

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=2.3.0
1+
VERSION=2.3.1
22

33
.PHONY: docker dockerpublish test run run-demo
44

@@ -14,9 +14,11 @@ test:
1414
go test -vet=all ./...
1515

1616
docker:
17-
docker build -t aoepeople/vistecture-dashboard .
17+
docker buildx build --tag aoepeople/vistecture-dashboard:latest --platform linux/amd64 .
1818

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)
19+
dockerpublish:
20+
docker buildx build \
21+
--push \
22+
--tag aoepeople/vistecture-dashboard:latest \
23+
--tag aoepeople/vistecture-dashboard:$(VERSION) \
24+
--platform linux/amd64 .

0 commit comments

Comments
 (0)