refactor(codex_account): 改用 Node.js 實作帳號查詢
CI / Release Tag Version (pull_request) Successful in 4s
CI / Codex (pull_request) Successful in 13s

This commit is contained in:
2026-06-29 09:53:07 +00:00
parent 2e36931f83
commit 68c78e6736
5 changed files with 137 additions and 104 deletions
+1 -5
View File
@@ -4,11 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
ca-certificates \
coreutils \
gawk \
jq \
nodejs \
npm \
&& npm install -g @openai/codex \
@@ -17,7 +13,7 @@ RUN apt-get update \
WORKDIR /workspace
COPY app/codex_account.py /usr/local/bin/codex-account
COPY app/codex_account.js /usr/local/bin/codex-account
RUN chmod +x /usr/local/bin/codex-account
CMD ["codex-account"]