chore: node 16

pull/21/merge
xiaojunnuo 2023-05-26 09:09:57 +08:00
parent a18aaeacf7
commit 8446a6d813
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
FROM registry.cn-shenzhen.aliyuncs.com/handsfree/node:16-alpine
RUN npm install -g yarn && npm install -g cross-env
RUN npm install -g yarn --registry=https://registry.npmmirror.com && npm install -g cross-env --registry=https://registry.npmmirror.com
ADD ./workspace/certd-server/ /app/
WORKDIR /app/
RUN yarn install -P
RUN yarn install -P --registry=https://registry.npmmirror.com
CMD ["npm","run","start"]