diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..eb0743a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM maven AS build +WORKDIR /app +COPY . . +RUN maven -f pom.xml clean package + +FROM openjdk:18-jre-slim +COPY --from=build /app/target/1.0.0 \ No newline at end of file