Create Dockerfile

This commit is contained in:
ametgud4u 2020-07-26 23:53:13 +05:30 committed by GitHub
parent 45eb7831e8
commit 05ddbe3062
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM tomcat:8
EXPOSE 8080
RUN mkdir /apps/
COPY ./spring-petclinic-2.1.0.BUILD-SNAPSHOT.jar /apps/app.jar
CMD java -jar /apps/app.jar