From 02673a1631da0c4abdd9ccfa6aed7ac200b653db Mon Sep 17 00:00:00 2001 From: Nikolay Sokolov Date: Thu, 14 May 2026 23:17:37 -0700 Subject: [PATCH] bugfix: Add package-lock.json into docker build --- src/apps/cli/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/cli/Dockerfile b/src/apps/cli/Dockerfile index 7e85bdb..beed3b5 100644 --- a/src/apps/cli/Dockerfile +++ b/src/apps/cli/Dockerfile @@ -60,7 +60,7 @@ RUN apt-get update \ WORKDIR /build # Install workspace dependencies first (layer-cache friendly) -COPY package.json ./ +COPY package.json package-lock.json ./ RUN npm install # Copy the full source tree and build the CLI bundle