mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 09:25:49 +00:00
Create Dockerfile
This commit is contained in:
parent
732770e625
commit
ac2d8eb152
1 changed files with 7 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
FROM node:ubuntu
|
||||
WORKDIR /usr/src/app
|
||||
COPY package*.jar ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
EXPOSE 8080
|
||||
CMD [ "npm", "start" ]
|
Loading…
Reference in a new issue