Dockerfile 225 B

123456789101112131415
  1. FROM debian:8
  2. RUN apt-get update && apt-get install -yq git wget tmux vim nodejs npm
  3. RUN npm install -g n
  4. RUN n stable
  5. WORKDIR /opt/datasource
  6. EXPOSE 8000
  7. RUN npm install -g nodemon
  8. CMD npm install && nodemon index.js