From 4d6d464cb911576637122be91c27ff47bccc94ab Mon Sep 17 00:00:00 2001 From: gamvo74 Date: Wed, 25 Feb 2026 01:35:35 -0500 Subject: [PATCH] Switch to npm install to bypass lockfile sync errors --- apps/api/Dockerfile | 2 +- apps/web/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index e6e845b..9f7e52e 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package*.json ./ # Install ALL dependencies including devDeps for build -RUN npm ci +RUN npm install # Copy source code COPY . . diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 7154d32..1186b44 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci +RUN npm install # Copy source code COPY . .