Permalink
Browse files

Add docker support

  • Loading branch information...
1 parent 90908e8 commit b92d8c139afc8e40444c6b4efe68a2c4d396aa2c @tobiaslins committed May 1, 2017
Showing with 15 additions and 0 deletions.
  1. +2 −0 .dockerignore
  2. +13 −0 Dockerfile
View
@@ -0,0 +1,2 @@
+node_modules
+npm-debug.log
View
@@ -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

Please sign in to comment.