From 0a97e51dc69ab4697522a64e7889b4c5484bee8f Mon Sep 17 00:00:00 2001 From: alexandrump Date: Wed, 22 Apr 2026 01:04:59 +0200 Subject: [PATCH] fix: force devDependencies install in builder stage (Coolify injects NODE_ENV=production) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 755fe1e..8cc6720 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apk add --no-cache python3 make g++ WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm ci --include=dev COPY . . RUN npm run build