From 855e380d2afdb3f48bbbecc6ae3ae7bc0e420e5a Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 15 May 2026 21:21:24 +0000 Subject: [PATCH] [AI] Copy lage.config.js in sync-server.Dockerfile Without lage.config.js the pipeline definition is empty, so `yarn build:server` -> `lage build:browser --to=@actual-app/web` fails with "no targets found that matches the given scope". --- sync-server.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync-server.Dockerfile b/sync-server.Dockerfile index 4c2f56a2a9..e8c2d54857 100644 --- a/sync-server.Dockerfile +++ b/sync-server.Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app # Copy only the files needed for installing dependencies COPY .yarn ./.yarn -COPY yarn.lock package.json .yarnrc.yml tsconfig.json ./ +COPY yarn.lock package.json .yarnrc.yml tsconfig.json lage.config.js ./ COPY packages/api/package.json packages/api/package.json COPY packages/component-library/package.json packages/component-library/package.json COPY packages/crdt/package.json packages/crdt/package.json