This commit is contained in:
Igor Zhukov 2014-09-08 16:09:24 +04:00
commit 407b77365b
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"]