From 05a47eae16078cc3a526493e93723129e8eac176 Mon Sep 17 00:00:00 2001 From: Tom Trappmann Date: Mon, 22 Dec 2025 21:53:48 +0100 Subject: [PATCH] change to install with package.json --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 07315bf..66bca64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apk add --no-cache python3 make g++ git # Install deps COPY package*.json ./ # If you have a package-lock.json, this will be deterministic. -RUN npm ci +RUN npm install # Copy source + build COPY . .