fix: 修复npm可选依赖安装问题 [AC-AISVC-01]

This commit is contained in:
MerCry 2026-02-26 02:21:30 +08:00
parent b91b57cfa4
commit bd38e7816a
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci --include=optional || npm install
COPY . . COPY . .