We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f5a2bf commit a79a7aeCopy full SHA for a79a7ae
claude/Dockerfile
@@ -71,6 +71,12 @@ RUN curl -fsSL "https://github.com/kubernetes-sigs/kind/releases/latest/download
71
RUN curl -fsSL "https://github.com/kubernetes/minikube/releases/latest/download/minikube-linux-amd64" -o /usr/local/bin/minikube && \
72
chmod +x /usr/local/bin/minikube
73
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
+
80
# claude
81
RUN npm install -g @anthropic-ai/claude-code happy-coder
82
0 commit comments