Dockerfile 193 B

1234567891011121314151617
  1. FROM costbase:2.0
  2. WORKDIR /home/ConstructionCost
  3. COPY . /home/ConstructionCost
  4. RUN cnpm install
  5. RUN gulp build
  6. EXPOSE 6060
  7. ENV NODE_ENV=prod
  8. ENTRYPOINT ["babel-node"]
  9. CMD ["server.js"]