From 1a54a11089f3ba54bee7dcfa038ed2ad0f8453e6 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 1 Mar 2026 11:25:45 -0800 Subject: [PATCH] fix: remove --frozen-lockfile to allow lockfile update during build Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a6f73af..ea43fdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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