From a730644a51dc05ebf2ab09e0bc0ac84a25640b13 Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Mon, 5 Sep 2022 17:38:05 +0200 Subject: [PATCH] something --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile 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