From d1a11971e1ef46fba4537945c8ea82afccb6e52b Mon Sep 17 00:00:00 2001 From: Egor Vasilyev Date: Wed, 1 Apr 2026 14:41:09 +0200 Subject: [PATCH] chore: replace npm install with npm ci Use npm ci for deterministic, clean installs in CI/CD and Docker environments. Co-Authored-By: Claude Opus 4.6 (1M context) --- examples/hello-world/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world/Dockerfile b/examples/hello-world/Dockerfile index 6878b79..6dad924 100644 --- a/examples/hello-world/Dockerfile +++ b/examples/hello-world/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/src/app COPY package*.json ./ -RUN npm install +RUN npm ci COPY . .