From 362c6deb22c7b547241fbe0744dbb3346ba3c4dd Mon Sep 17 00:00:00 2001 From: jason Date: Sun, 8 Mar 2026 22:51:22 -0500 Subject: [PATCH] Fix: Use npm install instead of npm ci to avoid lock file requirement --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ad482c..04edb2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app/client COPY client/package*.json ./ # Install frontend dependencies -RUN npm ci --production=false +RUN npm install # Copy frontend source COPY client/ ./ @@ -31,8 +31,8 @@ WORKDIR /app # Copy root package files COPY package*.json ./ -# Install production dependencies only -RUN npm ci --production +# Install production dependencies +RUN npm install --omit=dev # Copy server code COPY server/ ./server/