Skip to content

Commit

Permalink
Added Docker support.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderrudnik committed Jul 5, 2017
1 parent f373397 commit be7af26
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:8

WORKDIR /app

COPY . /app

EXPOSE 8080

CMD npm install && npm run dev

0 comments on commit be7af26

Please sign in to comment.