Skip to content

Commit

Permalink
Merge e8e8aab into 82be5a8
Browse files Browse the repository at this point in the history
  • Loading branch information
yamikuronue committed Jul 31, 2018
2 parents 82be5a8 + e8e8aab commit 4f63af9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:8

WORKDIR /opt/app
ENV NODE_ENV=production
COPY package*.json /opt/app/
RUN npm install

COPY src /opt/app/src/
COPY static /opt/app/static/
EXPOSE 9000
CMD [ "npm", "start" ]

0 comments on commit 4f63af9

Please sign in to comment.