FROM node:alpine as builder WORKDIR '/app' COPY package*.json ./ RUN npm install COPY . . RUN npm run build FROM nginx EXPOSE 60 COPY --from=builder /app/build /usr/share/nginx/html