From 60b916b8838052bc46261f441636380cc6ef1f2b Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 18 Aug 2025 00:31:25 +0200 Subject: [PATCH] Replace npm ci with npm install to fix Docker build issues --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d558a5d..1764fc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app # Install all deps for build COPY package*.json ./ -RUN npm ci && npm cache clean --force +RUN npm install && npm cache clean --force # Build frontend COPY . . @@ -22,7 +22,7 @@ RUN apk add --no-cache curl # Copy package.json and production dependencies COPY package*.json ./ -RUN npm ci --only=production && npm cache clean --force +RUN npm install --omit=dev && npm cache clean --force # Copy server files and built frontend COPY server ./server