Dockerfile.build 120 bytes
FROM openjdk:8
RUN apt update && apt install maven -y
COPY . /opt
WORKDIR /opt
RUN mvn clean install -DskipTests=true