FROM node:15-alpine AS builder WORKDIR /app COPY . /app RUN yarn && npx grunt FROM nginx:alpine COPY --from=builder /app/build /usr/share/nginx/html