From 3be1ddb0aa1c59414287cd632fee325306e4a9e6 Mon Sep 17 00:00:00 2001 From: goldsquid Date: Sat, 13 Sep 2025 20:36:09 +0700 Subject: [PATCH] fix --- reth.Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reth.Dockerfile b/reth.Dockerfile index d3c6ff0c..48efed39 100644 --- a/reth.Dockerfile +++ b/reth.Dockerfile @@ -260,6 +260,11 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ echo "Building base-reth-node with flashbots feature" && \ cargo build --bin base-reth-node --release && \ cp target/release/base-reth-node /usr/local/bin/base-reth-node; \ + elif [ "$BUILD_BSC_RETH" = "true" ]; then \ + echo "Building bsc-reth-node with flashbots feature" && \ + cargo build --profile $PROFILE --locked --bin bsc-reth --features jemalloc,asm-keccak && \ + cp target/$PROFILE/bsc-reth /usr/local/bin/reth; \ + else \ echo "Building standard reth" && \ cargo build --profile $PROFILE --locked --bin reth --features jemalloc,asm-keccak && \