Example using quarkus and kotlin
Necessary configuration to run the application
Java 1.8 is required.
Docker is required
It's mandatory install graalvm to deploy a native Quarkus application. It can be installed with the following documentation: https://www.graalvm.org/docs/getting-started/#install-graalvm
./mvnw verify -Pnative
docker build -f src/main/docker/Dockerfile.native -t quarkus-kotlin-example:0.1.0 .
docker run -i --rm -p 8080:8080 quarkus-kotlin-example:0.1.0