File tree 1 file changed +4
-6
lines changed
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
15
15
RUN cd op-node && \
16
16
make VERSION=$VERSION op-node
17
17
18
- FROM rust:1.82 AS reth
19
-
20
- ARG FEATURES=jemalloc,asm-keccak,optimism
18
+ FROM rust:1.85 AS reth
21
19
22
20
WORKDIR /app
23
21
24
22
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
25
23
26
24
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
29
27
RUN git clone $REPO --branch $VERSION --single-branch . && \
30
28
git switch -c branch-$VERSION && \
31
29
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
32
30
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
34
32
35
33
FROM ubuntu:22.04
36
34
You can’t perform that action at this time.
0 commit comments