secbox-relay-client (stable)
Published 2026-05-06 18:56:02 +00:00 by secbox-installer
Installation
docker pull git.intino.ai/tucomunidad-images/secbox-relay-client:stablesha256:aef504ace54943ac1fac0b388ca9759ae32f96d704849245c49f4d020a6817e3Image layers
| # debian.sh --arch 'arm64' out/ 'bookworm' '@1776729600' |
| ARG TARGETARCH |
| ARG CLOUDFLARED_VERSION=2024.10.1 |
| ARG RATHOLE_VERSION=v0.5.0 |
| RUN |3 TARGETARCH=arm64 CLOUDFLARED_VERSION=2024.10.1 RATHOLE_VERSION=v0.5.0 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl xz-utils && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN |3 TARGETARCH=arm64 CLOUDFLARED_VERSION=2024.10.1 RATHOLE_VERSION=v0.5.0 /bin/sh -c set -eux; case "$TARGETARCH" in arm64) CF_URL="https://github.com/cloudflare/cloudflared/releases/download/${CLOUDFLARED_VERSION}/cloudflared-linux-arm64" ;; amd64) CF_URL="https://github.com/cloudflare/cloudflared/releases/download/${CLOUDFLARED_VERSION}/cloudflared-linux-amd64" ;; *) echo "unsupported arch: $TARGETARCH" && exit 1 ;; esac; curl -fsSL "$CF_URL" -o /usr/local/bin/cloudflared; chmod +x /usr/local/bin/cloudflared; cloudflared --version # buildkit |
| RUN |3 TARGETARCH=arm64 CLOUDFLARED_VERSION=2024.10.1 RATHOLE_VERSION=v0.5.0 /bin/sh -c set -eux; case "$TARGETARCH" in arm64) RH_FILE="rathole-aarch64-unknown-linux-musl.zip" ;; amd64) RH_FILE="rathole-x86_64-unknown-linux-musl.zip" ;; *) echo "unsupported arch: $TARGETARCH" && exit 1 ;; esac; apt-get update && apt-get install -y --no-install-recommends unzip; curl -fsSL "https://github.com/rapiz1/rathole/releases/download/${RATHOLE_VERSION}/${RH_FILE}" -o /tmp/rh.zip; unzip /tmp/rh.zip -d /tmp/rh; install -m 0755 /tmp/rh/rathole /usr/local/bin/rathole; rm -rf /tmp/rh /tmp/rh.zip; apt-get purge -y unzip; apt-get autoremove -y; rm -rf /var/lib/apt/lists/*; rathole --version # buildkit |
| COPY entrypoint.sh /entrypoint.sh # buildkit |
| RUN |3 TARGETARCH=arm64 CLOUDFLARED_VERSION=2024.10.1 RATHOLE_VERSION=v0.5.0 /bin/sh -c chmod +x /entrypoint.sh # buildkit |
| ENTRYPOINT ["/entrypoint.sh"] |