5 lines
182 B
Plaintext
5 lines
182 B
Plaintext
FROM node:14-alpine
|
|
WORKDIR /
|
|
COPY ./web/package.json .
|
|
RUN npm install -g cnpm --registry=https://registry.npm.taobao.org && cnpm install --registry=https://registry.npm.taobao.org
|