Update Dockerfile to work with gulp

This commit is contained in:
Vincent Ambo 2015-04-30 11:12:05 +02:00
parent 9734a41304
commit d0c580cf75
No known key found for this signature in database
GPG Key ID: 66F505681DB8F43B

View File

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