Skip to content

Commit a79a7ae

Browse files
committed
feat(claude): add github cli v2.86.0
1 parent 0f5a2bf commit a79a7ae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

claude/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ RUN curl -fsSL "https://github.com/kubernetes-sigs/kind/releases/latest/download
7171
RUN curl -fsSL "https://github.com/kubernetes/minikube/releases/latest/download/minikube-linux-amd64" -o /usr/local/bin/minikube && \
7272
chmod +x /usr/local/bin/minikube
7373

74+
# github cli
75+
RUN curl -fsSL "https://github.com/cli/cli/releases/download/v2.86.0/gh_2.86.0_linux_amd64.tar.gz" | tar xz -C /tmp && \
76+
mv /tmp/gh_2.86.0_linux_amd64/bin/gh /usr/local/bin/gh && \
77+
chmod +x /usr/local/bin/gh && \
78+
rm -rf /tmp/gh_2.86.0_linux_amd64
79+
7480
# claude
7581
RUN npm install -g @anthropic-ai/claude-code happy-coder
7682

0 commit comments

Comments
 (0)