# BUILD FROM node:lts-iron AS builder WORKDIR /app COPY package.json yarn.lock ./ RUN yarn install COPY . . RUN yarn build