Guest User

Untitled

a guest
Feb 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # from base image node
  2. FROM node:8.11-slim
  3.  
  4. RUN mkdir -p /usr/src/app
  5. WORKDIR /usr/src/app
  6.  
  7. # copy oter files as well
  8. COPY dist/api.bundle.js .
  9.  
  10. #expose the port
  11. EXPOSE 3070
  12.  
  13. # command to run when intantiate an image
  14. CMD ["node","api.bundle.js"]
Add Comment
Please, Sign In to add comment