I wanted to test Paketo with a Jakarta EE 9 application (https://github.com/cwansart/qualified-injection-from-module-test) and ran:
pack build impl1 --builder paketobuildpacks/builder:base \
--env "BP_MAVEN_BUILT_ARTIFACT=controller/target/*.war"
After that I started the container with Docker:
docker run --rm -p 8080:8080 impl1
On my local Payara server I can reach the application on http://localhost:8080/controller/api/service, which does not work here. I am not sure where Tomcat published the app.
I checked the webapps folder inside the container. The application is there as it seems, but I can't find the correct context root.
Can someone tell me where the context root is or how I can find it out?