From 4cda5ecf98780c5b9484ee9e37458cc930b54424 Mon Sep 17 00:00:00 2001 From: Kunthawat Date: Wed, 11 Mar 2026 14:23:05 +0700 Subject: [PATCH] fix: Use npm install in builder stage (not npm ci) - Changed builder stage from 'npm ci' to 'npm install' - Production stage already uses 'npm install --production' - Both stages now forgiving with cached package files - Fixes Easypanel build cache issues completely --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6d3a3c707..08b13d474 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install COPY . .