Merge pull request #438 from tazjin/docker

Adds a Dockerfile
This commit is contained in:
Igor Zhukov 2014-09-08 16:09:14 +04:00
commit adbce141fd
2 changed files with 11 additions and 0 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
.git

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node
ADD . /opt/webogram
WORKDIR /opt/webogram
RUN npm install
EXPOSE 8000
CMD ["node", "server.js", "8000", "0.0.0.0"]