From b0709ec289ed6004fa46390cb824d48a1b7c59e3 Mon Sep 17 00:00:00 2001 From: goldsquid Date: Fri, 1 Aug 2025 18:13:57 +0700 Subject: [PATCH] fix --- reth.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reth.Dockerfile b/reth.Dockerfile index 4a4b6b70..d3c6ff0c 100644 --- a/reth.Dockerfile +++ b/reth.Dockerfile @@ -259,7 +259,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ elif [ "$BUILD_BASE_RETH" = "true" ]; then \ echo "Building base-reth-node with flashbots feature" && \ cargo build --bin base-reth-node --release && \ - cp target/$PROFILE/op-reth /usr/local/bin/base-reth-node; \ + cp target/release/base-reth-node /usr/local/bin/base-reth-node; \ else \ echo "Building standard reth" && \ cargo build --profile $PROFILE --locked --bin reth --features jemalloc,asm-keccak && \