FROM openjdk:8

RUN apt update && apt install maven -y

COPY . /opt
WORKDIR /opt
RUN mvn clean install