7 lines
86 B
Docker
7 lines
86 B
Docker
FROM node:20.9.0-alpine3.18
|
|
|
|
COPY package.json ./
|
|
COPY yarn.lock ./
|
|
|
|
RUN yarn install
|