FROM node:16-alpine3.11 as builder

WORKDIR /app

COPY ./ /app

RUN npm install

RUN npm run-script build 

RUN npm install -g serve