I've just built my Spring project using GraalVM native image like so:
mvn -Pnative -DskipTests clean package
Which gives me a native executable file. When I start it though, it seems like it doesn't have any active profile set. I would like to do something like this:
./my-native-app --spring.profiles.active=production
How can I achieve that?