@factiii/runner 0.2.1 → 0.7.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 +5 -2
- package/dist/cli.js +7968 -1445
- package/package.json +4 -2
package/Dockerfile.claude
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
FROM node:20-bookworm-slim
|
|
2
|
+
# awscli + jq: general-purpose cloud/JSON CLIs for agent tasks. apt (system
|
|
3
|
+
# PATH) so they aren't shadowed by the persistent /nix volume.
|
|
2
4
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
3
|
-
git bash sudo curl tmux ca-certificates xz-utils fuse3 \
|
|
5
|
+
git bash sudo curl tmux ca-certificates xz-utils fuse3 awscli jq \
|
|
4
6
|
&& rm -rf /var/lib/apt/lists/*
|
|
5
7
|
# Keep downloaded .debs so the /cache-backed apt archive persists across
|
|
6
8
|
# sessions (debian-slim's docker-clean hook wipes them otherwise).
|
|
@@ -9,7 +11,8 @@ RUN rm -f /etc/apt/apt.conf.d/docker-clean \
|
|
|
9
11
|
> /etc/apt/apt.conf.d/keep-cache
|
|
10
12
|
RUN useradd -m -s /bin/bash claude \
|
|
11
13
|
&& echo "claude ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
|
12
|
-
|
|
14
|
+
# claude-code + the Vercel & Cloudflare (wrangler) CLIs.
|
|
15
|
+
RUN npm install -g @anthropic-ai/claude-code@~2.1.0 vercel wrangler
|
|
13
16
|
RUN mkdir -p /cache && chown claude:claude /cache
|
|
14
17
|
|
|
15
18
|
# Nix (single-user, owned by `claude`) for prebuilt runtime/tool installs at run
|