fix: 修改 Dockerfile 使用 npm install 代替 npm ci

This commit is contained in:
maoshen
2026-04-14 01:26:39 +00:00
parent 56da90b88a
commit 49ad7016ab
3 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci
RUN npm install
# Copy project
COPY . .