From 8e7460e58d51748bf0580e715863ccac589a547f Mon Sep 17 00:00:00 2001 From: Danyal Prout Date: Thu, 27 Jun 2024 11:33:57 -0500 Subject: [PATCH] Update Reth (#286) --- reth/Dockerfile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/reth/Dockerfile b/reth/Dockerfile index 7525e51..0cae8fa 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -20,12 +20,10 @@ WORKDIR /app RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential -ENV REPO=https://github.com/paradigmxyz/reth.git -ENV VERSION=v1.0.0-rc.2 -ENV COMMIT=d786b459d93a6e1f7cf903a37f0542aafd671e7f -RUN git clone $REPO --branch $VERSION --single-branch . && \ - git switch -c branch-$VERSION && \ - bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' +#TODO: Revert to upstream, once https://github.com/paradigmxyz/reth/pull/9105 is merged. +ENV REPO=https://github.com/danyalprout/reth.git +ENV COMMIT=c79cbf4a918480556bd37204942a2d69827fed9f +RUN git clone $REPO . && git checkout $COMMIT RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf