Permalink
Please sign in to comment.
| @@ -0,0 +1,2 @@ | ||
| +node_modules | ||
| +npm-debug.log |
13
Dockerfile
| @@ -0,0 +1,13 @@ | ||
| +FROM node:boron | ||
| + | ||
| +RUN mkdir -p /usr/src/app | ||
| +WORKDIR /usr/src/app | ||
| + | ||
| +COPY package.json /usr/src/app/ | ||
| +RUN npm install | ||
| + | ||
| +COPY . /usr/src/app | ||
| + | ||
| +EXPOSE 3000 | ||
| + | ||
| +CMD [ "npm", "start" ] |
0 comments on commit
b92d8c1