Skip to content

Commit 8cd6941

Browse files
authored
chore: update reth binaries to v1.4.3 (#472)
1 parent ac53ae8 commit 8cd6941

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

reth/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bi
1515
RUN cd op-node && \
1616
make VERSION=$VERSION op-node
1717

18-
FROM rust:1.85 AS reth
18+
FROM rust:1.87 AS reth
1919

2020
WORKDIR /app
2121

2222
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2323

2424
ENV REPO=https://github.com/paradigmxyz/reth.git
25-
ENV VERSION=v1.3.12
26-
ENV COMMIT=6f8e7258f4733279080e4bd8345ce50538a40d6e
25+
ENV VERSION=v1.4.3
26+
ENV COMMIT=fe3653ffe602d4e85ad213e8bd9f06e7b710c0c5
2727
RUN git clone $REPO --branch $VERSION --single-branch . && \
2828
git switch -c branch-$VERSION && \
2929
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
3030

3131
RUN cargo build --bin op-reth --profile maxperf --manifest-path crates/optimism/bin/Cargo.toml
3232

33-
FROM rust:1.85 AS reth-base
33+
FROM rust:1.87 AS reth-base
3434

3535
WORKDIR /app
3636

@@ -39,8 +39,8 @@ RUN apt-get update && apt-get -y upgrade && \
3939
rm -rf /var/lib/apt/lists/*
4040

4141
ENV REPO=https://github.com/base/node-reth.git
42-
ENV VERSION=v0.1.0
43-
ENV COMMIT=3f3d84634cb3fccd429a9df6ea039a77be2b907b
42+
ENV VERSION=v0.1.1
43+
ENV COMMIT=cb55e69e3d88f8272ccc523c6c352d00b4ce2bf1
4444
RUN git clone $REPO . && \
4545
git checkout tags/$VERSION && \
4646
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' || (echo "Commit hash verification failed" && exit 1)

0 commit comments

Comments
 (0)