We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bd91b4 commit 41e69e2Copy full SHA for 41e69e2
1 file changed
docker/slim-all/Dockerfile
@@ -107,6 +107,17 @@ RUN echo \
107
&& yarn --version \
108
&& true
109
110
+# Install claude-code
111
+# Configure npm global packages to install in user home
112
+RUN echo \
113
+ && mkdir -p ~/.npm-global \
114
+ && npm config set prefix ~/.npm-global \
115
+ && echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc \
116
+ && export PATH=~/.npm-global/bin:$PATH \
117
+ && npm install -g @anthropic-ai/claude-code \
118
+ && echo "Claude Code installed at: $(which claude-code)" \
119
+ && true
120
+
121
##################################################################################
122
# Dotnet
123
ARG APT_PKGS="\
0 commit comments