- This project uses Maven as build tool. Checkout the project and run below command
mvn clean install
-
Verify, the build is successful and target folder has a Jar.
-
To build a docker image, run below command
docker build -t <docker_image_name> .
This step builds the docker image from dockerfile location
- To run created docker image using customized port(verify dockerfile)
docker run -p 8080:8080
- We have integrated it with Circle CI, to build automatically.