修正了若干问题

This commit is contained in:
carry
2025-02-19 14:41:49 +08:00
parent 001bc4e52b
commit d78af84c66
4 changed files with 9 additions and 5 deletions

View File

@@ -8,7 +8,8 @@ WORKDIR /app
COPY package*.json ./
# 安装依赖
RUN npm install
RUN npm config set registry https://registry.npmmirror.com && \
npm install
# 复制项目文件
COPY . .