We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2883ca7 commit 79eccf8Copy full SHA for 79eccf8
1 file changed
Dockerfile.codex
@@ -11,8 +11,9 @@ FROM node:22-bookworm-slim
11
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps ripgrep tini && rm -rf /var/lib/apt/lists/*
12
13
# Pre-install codex-acp and codex CLI globally
14
+ARG CODEX_ACP_VERSION=0.11.1
15
ARG CODEX_VERSION=0.121.0
-RUN npm install -g @zed-industries/codex-acp@0.11.1 @openai/codex@${CODEX_VERSION} --retry 3
16
+RUN npm install -g @zed-industries/codex-acp@${CODEX_ACP_VERSION} @openai/codex@${CODEX_VERSION} --retry 3
17
18
# Install gh CLI
19
RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \
0 commit comments