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*.json ./
COPY pnpm-lock.yaml* ./
# Install dependencies
RUN npm install -g pnpm
RUN pnpm install --frozen-lockfile
RUN npm ci
# Rebuild the source code only when needed
FROM base AS builder