feat(codex): 部屬 Codex 映像檔 #2

Merged
admin merged 2 commits from develop into master 2026-06-30 01:39:06 +00:00
Showing only changes of commit beb4d31634 - Show all commits
+15
View File
@@ -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"]