Files
illegitimate-bot/Dockerfile.cache

13 lines
172 B
Docker

FROM node:21.7.3-alpine3.18
RUN mkdir /cache
COPY .yarnrc.yml /cache
COPY package.json /cache
COPY yarn.lock /cache
WORKDIR /cache
RUN corepack enable
RUN yarn install