Merge pull request #791 from tazjin/docker-gulp

Update Dockerfile to work with gulp
This commit is contained in:
Igor Zhukov 2015-05-05 18:37:54 +03:00
commit 80d7f2f76a

View File

@ -3,8 +3,8 @@ FROM node
ADD . /opt/webogram
WORKDIR /opt/webogram
RUN npm install
RUN npm install -g gulp && npm install
EXPOSE 8000
CMD ["node", "server.js", "8000", "0.0.0.0"]
CMD ["gulp", "watch"]