@factiii/runner 0.7.0 → 0.8.0
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/Dockerfile.claude +3 -2
- package/dist/cli.js +1086 -283
- package/package.json +1 -1
package/Dockerfile.claude
CHANGED
|
@@ -11,8 +11,9 @@ RUN rm -f /etc/apt/apt.conf.d/docker-clean \
|
|
|
11
11
|
> /etc/apt/apt.conf.d/keep-cache
|
|
12
12
|
RUN useradd -m -s /bin/bash claude \
|
|
13
13
|
&& echo "claude ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
|
14
|
-
# claude-code + the Vercel & Cloudflare
|
|
15
|
-
|
|
14
|
+
# claude-code + codex (both agent providers) + the Vercel & Cloudflare
|
|
15
|
+
# (wrangler) CLIs.
|
|
16
|
+
RUN npm install -g @anthropic-ai/claude-code@~2.1.0 @openai/codex@~0.144.1 vercel wrangler
|
|
16
17
|
RUN mkdir -p /cache && chown claude:claude /cache
|
|
17
18
|
|
|
18
19
|
# Nix (single-user, owned by `claude`) for prebuilt runtime/tool installs at run
|