FROM node:16 as builder WORKDIR /usr/src/postamates_frontend COPY package*.json ./ COPY yarn.lock ./ RUN yarn install ADD . .