This is an example Java application that uses Spring Boot 2, Gradle and Docker It is compiled using Codefresh.
If you are looking for Maven, then see this example
To compile and package using Docker multi-stage builds
docker build . -t my-app
./gradlew build
docker build . -t my-app -f Dockerfile.only-package
docker run -p 8080:8080 my-app
And then visit http://localhost:8080 in your browser.
There is also a codefresh.yml for easy usage with the Codefresh CI/CD platform.
For the simple packaging pipeline see codefresh-package-only.yml
More details can be found in Codefresh documentation