Dockerfile created

This commit is contained in:
mMate89 2023-05-04 12:26:00 +02:00
parent 433e587a7d
commit da89e3a3f6

4
Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM openjdk:17
EXPOSE 8080
COPY /target/*.jar app.jar
ENTRYPOINT ["java","-jar","/app.jar"]