claude-init 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.devcontainer/Dockerfile +3 -0
- package/package.json +1 -1
package/.devcontainer/Dockerfile
CHANGED
|
@@ -4,6 +4,7 @@ ARG TZ
|
|
|
4
4
|
ENV TZ="$TZ"
|
|
5
5
|
|
|
6
6
|
ARG CLAUDE_CODE_VERSION=latest
|
|
7
|
+
ARG CODEX_VERSION=latest
|
|
7
8
|
|
|
8
9
|
# Install basic development tools and iptables/ipset
|
|
9
10
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
@@ -80,6 +81,8 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
|
|
|
80
81
|
|
|
81
82
|
# Install Claude
|
|
82
83
|
RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}
|
|
84
|
+
# Install Codex
|
|
85
|
+
RUN npm install -g @openai/codex@${CODEX_VERSION}
|
|
83
86
|
|
|
84
87
|
|
|
85
88
|
# Copy and set up firewall script
|