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