Demo application for devops training
Requires Java 17
Gradle is the main build system for this application. After installing Java you can execute a build by running.
./gradlew build -x test
./gradlew bootJar
docker build -t task1 .
docker run -d --name task1 -p 8080:8080 task1
curl localhost:8080
Response: Hello world!