Skip to content

Commit b571f94

Browse files
authored
chore: update reth to 1.3.0 (#425)
1 parent 40d773f commit b571f94

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

reth/Dockerfile

+4-6
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,20 @@ 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.82 AS reth
19-
20-
ARG FEATURES=jemalloc,asm-keccak,optimism
18+
FROM rust:1.85 AS reth
2119

2220
WORKDIR /app
2321

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

2624
ENV REPO=https://github.com/paradigmxyz/reth.git
27-
ENV VERSION=v1.2.0
28-
ENV COMMIT=1e965caf5fa176f244a31c0d2662ba1b590938db
25+
ENV VERSION=v1.3.0
26+
ENV COMMIT=a38c991c363d241894867a89324b8670be2f6a44
2927
RUN git clone $REPO --branch $VERSION --single-branch . && \
3028
git switch -c branch-$VERSION && \
3129
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
3230

33-
RUN cargo build --bin op-reth --features $FEATURES --profile maxperf --manifest-path crates/optimism/bin/Cargo.toml
31+
RUN cargo build --bin op-reth --profile maxperf --manifest-path crates/optimism/bin/Cargo.toml
3432

3533
FROM ubuntu:22.04
3634

0 commit comments

Comments
 (0)