dockerfile
This commit is contained in:
parent
5c80ea7e8b
commit
0242397085
1 changed files with 11 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
FROM node:18
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY package*.json /app
|
||||||
|
|
||||||
|
RUN npm i
|
||||||
|
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
|
CMD [ "npm", "start" ]
|
||||||
Loading…
Add table
Add a link
Reference in a new issue