Files
illegitimate-bot/Dockerfile.cache
2024-03-24 17:12:10 +01:00

13 lines
172 B
Docker

FROM node:21.7.1-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