Fix: Use npm ci instead of pnpm

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-16 14:31:56 -08:00
parent 40bf8428cd
commit 5ff291e4f9

View File

@@ -11,11 +11,9 @@ WORKDIR /app
# Copy package files # Copy package files
COPY package*.json ./ COPY package*.json ./
COPY pnpm-lock.yaml* ./
# Install dependencies # Install dependencies
RUN npm install -g pnpm RUN npm ci
RUN pnpm install --frozen-lockfile
# Rebuild the source code only when needed # Rebuild the source code only when needed
FROM base AS builder FROM base AS builder