修改后端镜像源地址

This commit is contained in:
zpc 2026-04-09 14:26:10 +08:00
parent f531b73096
commit bc0322380a

View File

@ -2,7 +2,7 @@
FROM 192.168.195.25:19900/library/node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm config set registry https://registry.npmmirror.com && npm ci
COPY . .
RUN npm run build