Skip to content

Commit

Permalink
chore: bump version for release, enforce docker build amd64 (#38)
Browse files Browse the repository at this point in the history
* chore: bump version to prepare release

* chore: bump version, enforce am64 as docker build platform
  • Loading branch information
carstendietrich authored Jun 17, 2024
1 parent 51296f8 commit 63c8be6
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=2.3.0
VERSION=2.3.1

.PHONY: docker dockerpublish test run run-demo

Expand All @@ -14,9 +14,11 @@ test:
go test -vet=all ./...

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

dockerpublish: docker
docker tag aoepeople/vistecture-dashboard:latest aoepeople/vistecture-dashboard:$(VERSION)
docker push aoepeople/vistecture-dashboard:latest
docker push aoepeople/vistecture-dashboard:$(VERSION)
dockerpublish:
docker buildx build \
--push \
--tag aoepeople/vistecture-dashboard:latest \
--tag aoepeople/vistecture-dashboard:$(VERSION) \
--platform linux/amd64 .

0 comments on commit 63c8be6

Please sign in to comment.