From 81621900b8055151e2385515c181784055f8d443 Mon Sep 17 00:00:00 2001 From: itsmylife44 <34112129+itsmylife44@users.noreply.github.com> Date: Fri, 30 Jan 2026 18:07:23 +0100 Subject: [PATCH] fix(docker): add missing spec-parser package.json to base stage The spec-parser library was added to the monorepo but its package.json was not included in the Dockerfile's BASE stage. This causes npm ci to fail during Docker builds with: Cannot find module 'fast-xml-parser' This module is a dependency of @automaker/spec-parser which is used by the server for parsing specification files. The fix adds the COPY instruction alongside the other libs, maintaining the established pattern in the Dockerfile. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e0afeb742..dcf80b64e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,7 @@ COPY libs/platform/package*.json ./libs/platform/ COPY libs/model-resolver/package*.json ./libs/model-resolver/ COPY libs/dependency-resolver/package*.json ./libs/dependency-resolver/ COPY libs/git-utils/package*.json ./libs/git-utils/ +COPY libs/spec-parser/package*.json ./libs/spec-parser/ # Copy scripts (needed by npm workspace) COPY scripts ./scripts