From 9607a99946fa99dfc9b774c0b0a204d1ea7cedf5 Mon Sep 17 00:00:00 2001 From: Bruno Cardoso Date: Fri, 7 Nov 2025 09:36:00 -0600 Subject: [PATCH] Replace npm ci command with npm run build in Dockerfile --- src/sequentialthinking/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sequentialthinking/Dockerfile b/src/sequentialthinking/Dockerfile index f1a88195bc..2082f671ca 100644 --- a/src/sequentialthinking/Dockerfile +++ b/src/sequentialthinking/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app RUN --mount=type=cache,target=/root/.npm npm install -RUN --mount=type=cache,target=/root/.npm-production npm ci --ignore-scripts --omit-dev +RUN npm run build FROM node:22-alpine AS release