Skip to content

Commit

Permalink
Added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
antweiss committed Nov 20, 2016
1 parent 6482df7 commit 6b359e4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:latest

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY package.json /usr/src/app/
RUN npm install --silent
COPY . /usr/src/app
COPY prod.env /usr/src/app/.env
CMD [ "npm", "start" ]

0 comments on commit 6b359e4

Please sign in to comment.