處理 AI review findings 並改寫 Node.js entrypoint #2

Merged
admin merged 59 commits from develop into master 2026-06-24 14:13:11 +00:00
Showing only changes of commit c88b2a8c61 - Show all commits
+2 -2
View File
@@ -13,13 +13,13 @@ RUN apk add --no-cache --no-check-certificate bash ca-certificates curl git jq u
# 安裝 Codex CLI 工具
RUN install_script="$(mktemp)" \
&& trap 'rm -f "$install_script"' EXIT \
&& curl -fsSL --retry 3 --retry-delay 2 --max-time 120 \
https://chatgpt.com/codex/install.sh \
-o "$install_script" \
&& echo "${CODEX_INSTALL_SHA256} ${install_script}" | sha256sum -c - \
&& sh "$install_script" \
&& codex --version \
&& rm -f "$install_script"
&& codex --version
# 安裝技能
RUN codex plugin marketplace add "https://gitea.jsc.idv.tw/plugins/doc.git" --ref "$CODEX_DOC_MARKETPLACE_REF" \