Create Dockerfile

This commit is contained in:
MoMaMi 2020-09-20 20:15:39 +04:00 committed by GitHub
parent 27109010a5
commit 83ab6d9472
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM openjdk:14-jdk
COPY target/spring-petclinic-2.3.0.BUILD-SNAPSHOT.jar /pet.jar
ENTRYPOINT ["java", "-jar", "/pet.jar"]