Add Node debugging

and simplify Compose file
This commit is contained in:
Ben Firshman
2016-06-18 10:04:44 -07:00
parent 64839f70dc
commit df96dfd638
3 changed files with 31 additions and 38 deletions

View File

@ -2,6 +2,7 @@ FROM node:5.11.0-slim
WORKDIR /app
RUN npm install -g nodemon
ADD package.json /app/package.json
RUN npm config set registry http://registry.npmjs.org
RUN npm install && npm ls