File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -15,22 +15,20 @@ RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bi
1515RUN 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
2220WORKDIR /app
2321
2422RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2523
2624ENV 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
2927RUN 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
3533FROM ubuntu:22.04
3634
You can’t perform that action at this time.
0 commit comments