We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2578fbd commit 6b941dbCopy full SHA for 6b941db
1 file changed
Dockerfile
@@ -16,6 +16,11 @@ RUN COMMANDS="sacct sacctmgr salloc sattach sbatch sbcast scancel scontrol sdiag
16
&& echo 'ssh $USER@$SLURM_CLUSTER_NAME -t "cd $PWD; . ~/.zshrc 2>/dev/null || . ~/.bashrc 2>/dev/null; bash -lc '\'$CMD \$@\''"' >> "/usr/local/bin/$CMD" \
17
&& chmod +x "/usr/local/bin/$CMD"; done
18
19
+# Install Claude Code
20
+RUN curl -fsSL https://nodejs.org/dist/v18.20.8/node-v18.20.8-linux-x64.tar.xz \
21
+ | tar -xJ -C /usr/local --strip-components=1
22
+RUN npm install -g @anthropic-ai/claude-code
23
+
24
FROM linux-base AS python-base
25
26
# Workdir
0 commit comments