From 438989c6d4f343f5008826edb6a5e65ec6e8b66b Mon Sep 17 00:00:00 2001 From: Danyal Prout Date: Mon, 17 Jun 2024 15:58:57 -0500 Subject: [PATCH] Update Reth for Fjord fixes --- reth/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reth/Dockerfile b/reth/Dockerfile index 77d39c10..8cb5d70e 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -14,7 +14,7 @@ RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \ RUN cd op-node && \ make VERSION=$VERSION op-node -FROM rust:1.78 AS reth +FROM rust:1.79 AS reth ARG FEATURES=jemalloc,asm-keccak,optimism @@ -23,7 +23,7 @@ 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 COMMIT=e5111f03396f661bdff69d04047d0c076bad75f3 +ENV COMMIT=7d55a14b1fca006260737dec1f9d3e93cd4c2008 RUN git clone $REPO . && git checkout $COMMIT RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf