From ce89f120f1f20ec54f788c7085a1e79e562a78a5 Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Sat, 13 Sep 2025 12:24:18 -0400 Subject: [PATCH] Fix Dockerfile to use npm install instead of npm ci for remote builds --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f158b9b2..a044ee03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apk add --no-cache git FROM base AS backend WORKDIR /app/backend COPY backend/package*.json ./ -RUN npm ci --only=production +RUN npm install --omit=dev # Frontend build stage FROM base AS frontend-build @@ -17,7 +17,7 @@ COPY frontend/package*.json ./ COPY frontend/tsconfig.json ./ COPY frontend/tailwind.config.js ./ COPY frontend/postcss.config.js ./ -RUN npm ci +RUN npm install COPY frontend/public ./public COPY frontend/src ./src RUN npm run build