fix(docker): copy scripts/ into appservice builder so the root prepare hook can run (#1446)
ci/woodpecker/pr/ci Pipeline failed

This commit is contained in:
fred
2026-08-26 22:39:39 -05:00
parent a3b0770205
commit 5aac155ab6
+2
View File
@@ -10,6 +10,8 @@ COPY pnpm-workspace.yaml pnpm-lock.yaml package.json ./
COPY apps/appservice/package.json ./apps/appservice/
COPY packages/ ./packages/
COPY plugins/ ./plugins/
# the root prepare script runs scripts/install-hooks.mjs on install
COPY scripts/ ./scripts/
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm turbo run build --filter @mosaicstack/mosaic-as...