Skip to content

Commit 52f236b

Browse files
committed
Update Dockerfile to install Node.js and the Claude Code package
- Added installation of Node.js version 20 and the @anthropic-ai/claude-code package to the Docker image. - Included curl in the package installation to facilitate the Node.js setup script.
1 parent fd7e32c commit 52f236b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

components/runners/claude-code-runner/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ WORKDIR /app
66

77
RUN apt-get update && apt-get install -y \
88
ca-certificates \
9+
curl \
910
git \
11+
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
12+
&& apt-get install -y nodejs \
13+
&& npm install -g @anthropic-ai/claude-code \
1014
&& rm -rf /var/lib/apt/lists/*
1115

1216
# Install uv package manager

0 commit comments

Comments
 (0)