Adding dockerfile
This commit is contained in:
parent
67538fdb7f
commit
5082ba7680
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
npm-debug.log
|
|
@ -0,0 +1,7 @@
|
|||
FROM node:argon
|
||||
RUN mkdir -p /usr/src/app
|
||||
WORKDIR /usr/src/app
|
||||
COPY . /usr/src/app
|
||||
RUN npm install
|
||||
EXPOSE 8080
|
||||
CMD [ "npm", "start" ]
|
Loading…
Reference in New Issue