Dockerfile added

This commit is contained in:
Sanjeev435 2018-08-18 20:08:46 +05:30 committed by GitHub
parent 26ae376e76
commit a008d3fbd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM openjdk:8-jdk-alpine
LABEL maintainer="mrcool435@gmail.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"]