Use npm install instead of npm ci for Prisma 7 upgrade
Build and Push Docker Image / lint-and-typecheck (push) Failing after 22s Details
Build and Push Docker Image / build (push) Has been skipped Details

package-lock.json is out of sync with package.json after Prisma 7
upgrade. Using npm install allows build to succeed and regenerate
the lock file.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Matt 2026-01-17 14:44:13 +01:00
parent 67bb4138f3
commit ccde726123
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ WORKDIR /app
# Install dependencies
COPY package.json package-lock.json* ./
RUN npm ci
RUN npm install
# Generate Prisma Client
COPY prisma ./prisma/