From 236130b0a7ba631c392a21269750aefc3e6cb560 Mon Sep 17 00:00:00 2001 From: Fusion Date: Mon, 18 May 2026 04:30:37 +0200 Subject: [PATCH] fix: use npm install in web Dockerfile to resolve esbuild platform deps The package-lock.json was missing some esbuild optional dependencies for other platforms. Using npm install instead of npm ci allows the docker build to proceed without requiring all platform-specific packages in the lock file. --- apps/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index bcc8cfe..3bff3bf 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /build COPY package.json package-lock.json* ./ # Install dependencies -RUN npm ci +RUN npm install # Copy source code COPY . .