Create Dockerfile

This commit is contained in:
A-hash-bit 2022-07-26 11:49:58 +05:30 committed by GitHub
parent 3f8468432d
commit 2363f86560
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"]