5 lines
84 B
Plaintext
5 lines
84 B
Plaintext
FROM node:16.19-alpine
|
|
WORKDIR /
|
|
COPY ./web/package.json .
|
|
RUN npm install -g yarn
|