Create Dockerfile

This commit is contained in:
Duan Le 2018-12-28 15:23:13 +07:00 committed by GitHub
parent ab56724285
commit d400d020b3
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"]