Add dockerfile
This commit is contained in:
parent
61512021a9
commit
7c438ab0e5
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM node:12-alpine
|
||||
|
||||
RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app
|
||||
WORKDIR /home/node/app
|
||||
COPY package*.json ./
|
||||
USER node
|
||||
RUN npm install
|
||||
COPY --chown=node:node . .
|
||||
CMD [ "npm", "start" ]
|
||||
Loading…
x
Reference in New Issue
Block a user