FROM node:20.9.0-alpine3.18 RUN mkdir /cache COPY package.json /cache COPY yarn.lock /cache WORKDIR /cache RUN yarn install