2026-06-18 07:12:57 +02:00
|
|
|
# Grok (xAI) Agent Image
|
|
|
|
|
# =============================================================================
|
|
|
|
|
# Runs grok-build-0.1 through the opencode CLI (OpenAI protocol) instead of
|
|
|
|
|
# Claude Code, while reusing the base image's roboco venv + uv + the RoboCo MCP
|
|
|
|
|
# gateway servers. The entrypoint renders opencode.json from the spawn env +
|
|
|
|
|
# mounted mcp-config.json (see roboco.llm.providers.opencode_config) and runs
|
|
|
|
|
# opencode. One runtime image serves every role — role behaviour comes from the
|
|
|
|
|
# mounted system prompt / manifest / mcp-config, exactly as on the Claude path.
|
|
|
|
|
# =============================================================================
|
|
|
|
|
|
|
|
|
|
FROM roboco-agent-base
|
|
|
|
|
|
|
|
|
|
USER root
|
|
|
|
|
|
2026-06-18 21:14:06 +02:00
|
|
|
# opencode — the OpenAI-protocol agent runtime. grok-build-0.1 runs on opencode's
|
2026-06-18 21:59:25 +02:00
|
|
|
# BUILT-IN xai provider (no custom provider block / npm needed), so only
|
|
|
|
|
# opencode-ai is installed; it resolves the provider SDK at runtime.
|
2026-06-18 21:14:06 +02:00
|
|
|
RUN npm install -g opencode-ai \
|
2026-06-18 07:12:57 +02:00
|
|
|
&& npm cache clean --force \
|
|
|
|
|
&& rm -rf /root/.npm /tmp/*
|
|
|
|
|
|
2026-06-18 21:59:25 +02:00
|
|
|
# opencode plugins, baked into the AUTO-DISCOVERY dir (~/.config/opencode/plugin/)
|
|
|
|
|
# rather than referenced by a config `plugin:` path — the dir is the simplest
|
|
|
|
|
# registration route. Each plugin uses a NAMED export (opencode's convention).
|
2026-06-18 19:53:22 +02:00
|
|
|
# secret-scrub — bash-guard parity (PAT/credential deny on tool.execute.before)
|
|
|
|
|
# budget-feed — POSTs budget/loop/terminal counters to the in-container SDK
|
|
|
|
|
# server (tool.execute.{before,after}); the entrypoint starts
|
|
|
|
|
# that server (roboco.agent_sdk.server) for Claude-parity.
|
2026-06-18 21:14:06 +02:00
|
|
|
COPY docker/grok/secret-scrub.js /home/agent/.config/opencode/plugin/secret-scrub.js
|
|
|
|
|
COPY docker/grok/budget-feed.js /home/agent/.config/opencode/plugin/budget-feed.js
|
2026-06-18 08:36:36 +02:00
|
|
|
|
2026-06-18 07:12:57 +02:00
|
|
|
# Entrypoint: render opencode.json, then run opencode (overrides base's `claude`).
|
|
|
|
|
COPY docker/scripts/grok-agent-entrypoint.sh /app/scripts/grok-agent-entrypoint.sh
|
|
|
|
|
RUN chmod 0755 /app/scripts/grok-agent-entrypoint.sh
|
|
|
|
|
|
2026-06-18 21:14:06 +02:00
|
|
|
# opencode persists data under ~/.local/share and state under ~/.local/state, and
|
|
|
|
|
# reads config + plugins from ~/.config/opencode. When the orchestrator
|
|
|
|
|
# bind-mounts the opencode store at ~/.local/share/opencode, docker creates the
|
|
|
|
|
# intermediate ~/.local AS ROOT, so the non-root agent can no longer create its
|
|
|
|
|
# siblings and opencode EACCESes at boot. Pre-create the trees agent-owned so the
|
|
|
|
|
# mount leaves the parents writable (complements the orchestrator's 0777
|
|
|
|
|
# host-source pre-create), and so the baked plugin dir is agent-owned.
|
2026-06-18 18:19:45 +02:00
|
|
|
RUN mkdir -p /home/agent/.local/share/opencode /home/agent/.local/state \
|
2026-06-18 21:14:06 +02:00
|
|
|
/home/agent/.config/opencode/plugin \
|
|
|
|
|
&& chown -R agent:agent /home/agent/.local /home/agent/.config
|
2026-06-18 18:19:45 +02:00
|
|
|
|
2026-06-18 07:12:57 +02:00
|
|
|
USER agent
|
|
|
|
|
|
|
|
|
|
LABEL role="grok-runtime"
|
|
|
|
|
LABEL description="Grok (xAI) agent runtime — grok-build-0.1 via opencode (OpenAI protocol)"
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT ["/app/scripts/grok-agent-entrypoint.sh"]
|