Create Dockerfile

This commit is contained in:
senatorovv 2023-07-12 10:24:19 +04:00 committed by GitHub
parent 3be289517d
commit 1e0b3ec0a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM anapsix/alpine-java
LABEL maintainer="shanem@liatrio.com"
COPY /target/spring-petclinic-1.5.1.jar /home/spring-petclinic-1.5.1.jar
CMD ["java","-jar","/home/spring-petclinic-1.5.1.jar"]