Files
illegitimate-bot/Dockerfile.cache
2024-01-14 17:57:32 +01:00

10 lines
127 B
Docker

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