feat: add Dockerfile
This commit is contained in:
parent
a462b6af1b
commit
1b7e975080
8 changed files with 60 additions and 13 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
FROM node:16
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
CMD [ "npm", "start" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue