fix: remove --frozen-lockfile to allow lockfile update during build

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-01 11:25:45 -08:00
parent 823102b908
commit 1a54a11089
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
RUN pnpm install
# Rebuild the source code only when needed
FROM base AS builder