From 6efb64e3661dd92405405d8835a92505dfe2ecbb Mon Sep 17 00:00:00 2001 From: gsd Date: Mon, 13 Feb 2023 21:22:30 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=83=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 9 +++++++++ pom.xml | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..58d9e1c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM maven:3.8.7-openjdk-18 as builder +WORKDIR /tmp +RUN git clone https://git.pblr-nyk.pro/gsd/Facti13.Web.Backend.Java.V2 && \ +cd Facti13.Web.Backend.Java.V2 && \ +mvn -f pom.xml clean package +FROM adoptopenjdk:11-jre-hotspot +COPY --from=builder /tmp/Facti13.Web.Backend.Java.V2/target/*.jar /app/backend.jar +WORKDIR /app +ENTRYPOINT ["java", "-jar", "backend.jar"] \ No newline at end of file diff --git a/pom.xml b/pom.xml index 8af947e..101cf12 100644 --- a/pom.xml +++ b/pom.xml @@ -99,4 +99,13 @@ test + + + + + org.springframework.boot + spring-boot-maven-plugin + + + \ No newline at end of file