mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-17 04:11:23 +00:00
Some checks failed
CLI Release / Build and release CLI (push) Has been cancelled
Build Docker Images / build (claude) (push) Has been cancelled
Build Docker Images / build (codex) (push) Has been cancelled
Build Docker Images / build (cursor) (push) Has been cancelled
Build Docker Images / build (hermes) (push) Has been cancelled
Build Docker Images / build (junie) (push) Has been cancelled
Build Docker Images / build (kilocode) (push) Has been cancelled
Build Docker Images / build (openclaw) (push) Has been cancelled
Build Docker Images / build (opencode) (push) Has been cancelled
Build Docker Images / build (pi) (push) Has been cancelled
Lint / ShellCheck (push) Has been cancelled
Lint / Biome Lint (push) Has been cancelled
Lint / macOS Compatibility (push) Has been cancelled
The sandbox flow on local pulls ghcr.io/openrouterteam/spawn-<agent>:latest, but the Docker build matrix in .github/workflows/docker.yml didn't include `pi` and there was no sh/docker/pi.Dockerfile, so the image was never published. `spawn pi local --beta sandbox` failed with "denied" pulling spawn-pi:latest. Adds the Dockerfile (mirrors kilocode/codex: Ubuntu 24.04 + Node 22 + `npm install -g @mariozechner/pi-coding-agent`) and registers `pi` in the workflow matrix. The next scheduled or manual run will publish ghcr.io/openrouterteam/spawn-pi:latest. Co-authored-by: A <258483684+la14-1@users.noreply.github.com>
17 lines
466 B
Docker
17 lines
466 B
Docker
FROM ubuntu:24.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Base packages
|
|
RUN apt-get update -y && \
|
|
apt-get install -y --no-install-recommends \
|
|
curl git ca-certificates build-essential unzip zsh && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Node.js 22 via n
|
|
RUN curl --proto '=https' -fsSL https://raw.githubusercontent.com/tj/n/master/bin/n | bash -s install 22
|
|
|
|
# Pi (pi-coding-agent)
|
|
RUN npm install -g @mariozechner/pi-coding-agent
|
|
|
|
CMD ["/bin/sleep", "inf"]
|