This example assumes you have previously completed the following examples:
To build the JAR file use the following Maven command line:
mvn -ntp package
To run the example locally use the following Maven command line:
mvn quarkus:dev
You can see the application in action at http://localhost:8080/hello
To build and push the Docker image to your ACR use the command lines below:
export ACR_QUARKUS_IMAGE=quarkus:latest
az acr build --registry $ACR_NAME --resource-group $RESOURCE_GROUP --image $ACR_QUARKUS_IMAGE .
Do NOT forget to remove the resources you created once you are done running the example.
4m