Skip to content

Commit

Permalink
feat(Makefile): Add arm docker targets
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Apr 23, 2024
1 parent 7a223c2 commit cbe4db0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,13 @@ docker-build:

docker-push:
docker push ghcr.io/sikalabs/github-apps-pull-secret-sync

docker-build-and-push-arm64:
@make docker-build-arm64
@make docker-push-arm64

docker-build-arm64:
docker build --platform linux/arm64 -t ghcr.io/sikalabs/github-apps-pull-secret-sync:arm64 .

docker-push-arm64:
docker push ghcr.io/sikalabs/github-apps-pull-secret-sync:arm64

0 comments on commit cbe4db0

Please sign in to comment.