Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # stage 1
- FROM node:alpine AS webapp
- WORKDIR /app
- COPY . .
- RUN npm install && npm run build
- # stage 2
- FROM nginx:alpine
- COPY --from=webapp /app/dist/angular-starter/browser /usr/share/nginx/html
- EXPOSE 80
Add Comment
Please, Sign In to add comment