Dockerfile_qa 251 B

12345678910111213141516171819
  1. FROM costbase:latest
  2. WORKDIR /home/ConstructionCost
  3. RUN git checkout master
  4. RUN git pull http://192.168.1.12:3000/SmartCost/ConstructionCost master
  5. RUN cnpm install
  6. RUN gulp build
  7. EXPOSE 6060
  8. ENV NODE_ENV=qa
  9. ENTRYPOINT babel-node server.js