When I run my kogito quarkus drl project using maven mvn quarkus:dev, the rules extension gets loaded (I see it load during the build step). I test my project and the rules run very fast. Then, I run the same quarkus project inside a docker container and the rules extension doesn’t seem to load during quarkus startup. I test the app and the same rules run much slower inside the container. How can I get quarkus to load the rules extension at startup in side the container similar to the way maven loads the rules extension during the build step?
I tried to create a mutable-jar and added the build env var to quarkus app jar execute. But the doco says that is only for dev and not prod. So, what to use in prod??? I am confused on why prod mode does not load the rules extension.