something

This commit is contained in:
nora 2022-09-05 17:38:05 +02:00
parent 32355a0064
commit a730644a51

7
Dockerfile Normal file
View file

@ -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