mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 07:15:49 +00:00
Create Dockerfile
This commit is contained in:
parent
45eb7831e8
commit
05ddbe3062
1 changed files with 9 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal 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
|
Loading…
Reference in a new issue