From 97ca887649cc5f4a16057b9124a254b5418eb28d Mon Sep 17 00:00:00 2001 From: bigtux Date: Sat, 7 Feb 2026 10:56:08 -0300 Subject: [PATCH] fix: npm ci -> npm install (no lock file) --- dashboard/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/Dockerfile b/dashboard/Dockerfile index 74c59af..9ceacc3 100644 --- a/dashboard/Dockerfile +++ b/dashboard/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app # Copy package files COPY package*.json ./ -RUN npm ci +RUN npm install # Copy source COPY . .