Last active
June 28, 2022 22:59
-
-
Save fmolliet/82baba7e8d525cc806934c8a35fc1d34 to your computer and use it in GitHub Desktop.
Quarkus build native container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // DOCS: https://quarkus.io/version/main/guides/deploying-to-heroku | |
| heroku login | |
| mvn clean package -D"quarkus.container-image.build=true" -D"quarkus.container-image.group=registry.heroku.com/<APP NAME>" -D"quarkus.container-image.name=web" -D"quarkus.container-image.tag=latest" -Pnative -D"quarkus.native.container-build=true" -D"quarkus.native.native-image-xmx=6g" | |
| docker push registry.heroku.com/<APP NAME>/web | |
| heroku container:release web --app <APP NAME> | |
| // heroku container:push web -a <APP NAME> | |
| heroku logs --app <APP NAME> --tail |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment