diff --git a/Dockerfile.build b/Dockerfile.build
new file mode 100644
index 0000000000000000000000000000000000000000..f835b2f9eceeb9882b1a3f23704dce0804b94077
--- /dev/null
+++ b/Dockerfile.build
@@ -0,0 +1,7 @@
+FROM openjdk:8
+
+RUN apt update && apt install maven -y
+
+COPY . /opt
+WORKDIR /opt
+RUN mvn clean install -DskipTests=true