Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. deploy:
  2. provider: azure_web_apps
  3. verbose: true
  4. skip_cleanup: true
  5.  
  6. FROM node:alpine as builder
  7. WORKDIR '/app'
  8. COPY package.json .
  9. RUN npm install
  10. COPY . .
  11. RUN npm run build
  12.  
  13. FROM nginx
  14. COPY --from=builder /app/build /usr/share/nginx/html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement