File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,22 +15,22 @@ 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.85 AS reth
18+ FROM rust:1.87 AS reth
1919
2020WORKDIR /app
2121
2222RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2323
2424ENV 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
2727RUN git clone $REPO --branch $VERSION --single-branch . && \
2828 git switch -c branch-$VERSION && \
2929 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
3030
3131RUN 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
3535WORKDIR /app
3636
@@ -39,8 +39,8 @@ RUN apt-get update && apt-get -y upgrade && \
3939 rm -rf /var/lib/apt/lists/*
4040
4141ENV 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
4444RUN git clone $REPO . && \
4545 git checkout tags/$VERSION && \
4646 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' || (echo "Commit hash verification failed" && exit 1)
You can’t perform that action at this time.
0 commit comments