From beb4d3163467d49266ea60aced5b6b2927678ba4 Mon Sep 17 00:00:00 2001 From: Jeffery Date: Tue, 30 Jun 2026 09:38:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(codex):=20=E6=96=B0=E5=A2=9E=20Codex=20?= =?UTF-8?q?=E6=98=A0=E5=83=8F=E6=AA=94=E8=A8=AD=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4c1f4ba --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM ubuntu:latest + +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt update \ + && apt install -y --no-install-recommends \ + ca-certificates \ + nodejs \ + npm \ + && npm install -g @openai/codex \ + && apt clean \ + && rm -rf /var/lib/apt/lists/* + +CMD ["codex", "--version"] +