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