From 239578edc99e093ef6dffb17cada5e80179f4ca7 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Sat, 20 Jun 2026 02:41:26 +0200 Subject: [PATCH] build(deploy): drop non-reproducible lockfile fallback; require frozen install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f5ed7b4..95f5e4c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ COPY packages/web/package.json packages/web/ COPY patches/ patches/ # Install dependencies -RUN pnpm install --frozen-lockfile || pnpm install +RUN pnpm install --frozen-lockfile # Copy source code (excluding desktop — not needed in Docker) COPY packages/shared/ packages/shared/ @@ -58,7 +58,7 @@ COPY packages/web/package.json packages/web/ COPY patches/ patches/ # Install production dependencies only (tsx is in server dependencies) -RUN pnpm install --prod --frozen-lockfile || pnpm install --prod +RUN pnpm install --prod --frozen-lockfile # Copy shared source (needed at runtime since server imports types directly) COPY packages/shared/ packages/shared/