fix: remove build script

This commit is contained in:
2026-07-21 00:10:58 +02:00
parent 6f24df8cd3
commit b47430c963
6 changed files with 14 additions and 24 deletions
+3 -5
View File
@@ -3,11 +3,9 @@ ARG TEA_VERSION=0.14.2
FROM node:24-bookworm-slim AS agent-tools
ARG CODEGRAPH_VERSION=1.3.1
ARG OPENCODE_REFRESH
RUN test -n "$OPENCODE_REFRESH" \
|| { echo "OPENCODE_REFRESH is required; run scripts/build.sh" >&2; exit 1; } \
&& npm install --global \
'opencode-ai@^1' \
ARG AGENTCI_OPENCODE_VERSION=^1
RUN npm install --global \
"opencode-ai@${AGENTCI_OPENCODE_VERSION}" \
"@colbymchenry/codegraph@${CODEGRAPH_VERSION}" \
&& version="$(opencode --version)" \
&& case "$version" in 1.*) ;; *) echo "Expected OpenCode 1.x, got $version" >&2; exit 1;; esac