Dockerfile 261 Bytes 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 FROM node:16.20.0 WORKDIR /home/hro-company-node COPY package.json ./package.json RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories RUN apk add git RUN npm config set registry https://registry.npm.taobao.org && npm install