Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. FROM node:10
  2. WORKDIR "/application"
  3. COPY . /application
  4. RUN ["chmod", "+x", "/application/start_application.sh"]
  5. RUN yarn install && yarn run build
  6. ENTRYPOINT /application/start_application.sh
  7. EXPOSE 3000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement