5 lines
118 B
Plaintext
5 lines
118 B
Plaintext
FROM node:16.19-alpine
|
|
WORKDIR /
|
|
COPY ./web/package.json .
|
|
RUN yarn install --registry=https://registry.npmmirror.com
|