Skip to content

Commit

Permalink
Bump Reth client to v1.0.5 (#35)
Browse files Browse the repository at this point in the history
* Bump Reth version to 1.0.5

* Add minimum Docker version to the requirements
  • Loading branch information
matjazv authored Aug 16, 2024
1 parent da0d191 commit 74c3584
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ The following system requirements are recommended to run a Lisk L2 node.

- Machines with a high performance SSD drive with at least 750GB (full node) or 4.5TB (archive node) free

### Docker

- Docker Engine version [27.0.1](https://docs.docker.com/engine/release-notes/27.0/) or higher

## Supported networks

| Network | Status |
Expand Down
7 changes: 5 additions & 2 deletions reth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,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 COMMIT=ffd71a0b024e6c20f15cb95bcdf1b4882fc91093
RUN git clone $REPO . && git checkout $COMMIT
ENV VERSION=v1.0.5
ENV COMMIT=603e39ab74509e0863fc023461a4c760fb2126d1
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 --locked --features $FEATURES --profile $PROFILE

Expand Down

0 comments on commit 74c3584

Please sign in to comment.