feat: install @ai-hero/sandcastle + minimal Dockerfile

This commit is contained in:
2026-05-13 08:17:32 +02:00
parent 35664f67d5
commit 1e7bd68b17
3 changed files with 11088 additions and 5954 deletions

14
.sandcastle/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# Minimal sandbox for sandcastle dispatch.
# Will be extended once the CI image is identified (see ADR-future).
FROM node:22-bookworm-slim
# pnpm via corepack (matches the repo's pnpm version)
RUN corepack enable && corepack prepare pnpm@9 --activate
WORKDIR /workspace
# Repo files are mounted by sandcastle at /workspace at runtime.
# The agent runs `pnpm install --frozen-lockfile` as its first step
# per the implementer prompt template.
CMD ["bash"]