arc402-cli 1.4.29 → 1.4.30
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/package.json +1 -1
- package/workroom/Dockerfile +4 -0
package/package.json
CHANGED
package/workroom/Dockerfile
CHANGED
|
@@ -13,6 +13,10 @@ RUN npm install -g arc402-cli@${ARC402_CLI_VERSION} --build-from-source 2>&1 | t
|
|
|
13
13
|
# Stamp the CLI version as an image label so workroom start can detect stale images.
|
|
14
14
|
LABEL arc402.cli.version=${ARC402_CLI_VERSION}
|
|
15
15
|
|
|
16
|
+
# Install Claude Code CLI — required for agent_type = "claude-code" worker execution.
|
|
17
|
+
# Installed globally with Linux-native binaries at image build time.
|
|
18
|
+
RUN npm install -g @anthropic-ai/claude-code 2>&1 | tail -3 || true
|
|
19
|
+
|
|
16
20
|
# Create workroom user with the same UID/GID as the host user (default: 1000).
|
|
17
21
|
# This ensures bind-mounted volumes are readable/writable without permission fights.
|
|
18
22
|
# Override at build time: docker build --build-arg HOST_UID=1001 --build-arg HOST_GID=1001
|