This provides a Docker Container containing all of the prerequisites required to build Metron. This allows you to easily build Metron without installing all of the build dependencies manually.
Build the Docker container.
cd metron-deployment/packaging/docker/ansible-docker docker build -t ansible-docker:latest .
Launch the container.
docker run -it \ -v `pwd`/../../../..:/root/metron \ -v ~/.m2:/root/.m2 \ ansible-docker:latest bash
This maps the Metron source code along with your local Maven repository to the container. This will prevent you from having to re-download all of these dependencies each time you build Metron.
Execute the following inside the Docker container to build Metron.
cd /root/metron mvn clean package -DskipTests