Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to reth 1.1.5 #382

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions reth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,11 @@ WORKDIR /app
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential

ENV REPO=https://github.com/paradigmxyz/reth.git
ENV VERSION=v1.1.4-dev
ENV COMMIT=bc8d4fed1e7000e6ee08e1ba872b33be77cb52ef
# RUN git clone $REPO --branch $VERSION --single-branch . && \
# git switch -c branch-$VERSION && \
# bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
RUN git clone $REPO . && \
git checkout $COMMIT
ENV VERSION=v1.1.5
ENV COMMIT=3212af2d85a54eb207661361ac9fe1d7de4b5b8e
RUN git clone $REPO --branch $VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'

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

Expand Down
Loading