Skip to content

Commit 1a6da57

Browse files
committed
add timeout to claude
Signed-off-by: Jet Chiang <pokyuen.jetchiang-ext@solo.io>
1 parent a50cdd3 commit 1a6da57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

go/harness/claude/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN apk add --no-cache bash ca-certificates git libgcc libstdc++ ripgrep \
3232
arm64) platform="linux-arm64-musl"; checksum="${CLAUDE_CODE_ARM64_SHA256}" ;; \
3333
*) echo "unsupported target architecture: ${TARGETARCH}" >&2; exit 1 ;; \
3434
esac \
35-
&& wget -q -O /usr/local/bin/claude \
35+
&& wget -T 60 -t 3 -O /usr/local/bin/claude \
3636
"https://downloads.claude.ai/claude-code-releases/${CLAUDE_CODE_VERSION}/${platform}/claude" \
3737
&& echo "${checksum} /usr/local/bin/claude" | sha256sum -c - \
3838
&& chmod 0755 /usr/local/bin/claude \

0 commit comments

Comments
 (0)