cloud-speed 0.8.0

cloud-speed is a tool for testing your networks speed and consistency.
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM alpine:latest

# Install runtime dependencies for TLS
RUN apk add --no-cache ca-certificates

# Copy platform-specific pre-built binary
# TARGETARCH is automatically set by BuildKit to "amd64" or "arm64"
ARG TARGETARCH
COPY linux/${TARGETARCH}/cloud-speed /usr/local/bin/cloud-speed

RUN chmod +x /usr/local/bin/cloud-speed

CMD ["cloud-speed", "--json"]