From efe7856da0ba38aabfec9ba87c321f42b77bf0aa Mon Sep 17 00:00:00 2001 From: goldsquid Date: Thu, 19 Jun 2025 10:29:20 +0700 Subject: [PATCH] curl missing --- hyperliquid/visor.Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hyperliquid/visor.Dockerfile b/hyperliquid/visor.Dockerfile index 65286a98..85b6369a 100644 --- a/hyperliquid/visor.Dockerfile +++ b/hyperliquid/visor.Dockerfile @@ -8,6 +8,11 @@ ARG HL_VISOR_URL_MAINNET=https://binaries.hyperliquid.xyz/Mainnet/hl-visor WORKDIR /root +# Install curl +RUN apt-get update && \ + apt-get install -y curl && \ + rm -rf /var/lib/apt/lists/* + # Configure chain to testnet RUN echo "{\"chain\": \"${CHAIN_NAME}\"}" > /root/visor.json