Skip to content

Commit ac53ae8

Browse files
authored
Updates op-node, Nethermind in Nethermind Dockerfile (#470)
- Updates op-node to 1.13.3 to support Isthmus hard fork. - Updates Nethermind to 1.33.11 to support Isthmas hard fork + fix invalid blocks being rejected while syncing.
1 parent e82da83 commit ac53ae8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

nethermind/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.22 AS op
1+
FROM golang:1.23 AS op
22

33
WORKDIR /app
44

55
ENV REPO=https://github.com/ethereum-optimism/optimism.git
6-
ENV VERSION=v1.12.1
7-
ENV COMMIT=d3b8eadd80457c74d9c4251948ac11e8d14a9c9c
6+
ENV VERSION=v1.13.3
7+
ENV COMMIT=b1e7c63bb2ffea46771c302bcb05f72ba1a7bf61
88
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
99
git switch -c branch-$VERSION && \
1010
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
@@ -13,7 +13,7 @@ RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
1313
RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bin
1414

1515
RUN cd op-node && \
16-
make VERSION=$VERSION op-node
16+
just VERSION=$VERSION op-node
1717

1818
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble AS build
1919

@@ -23,8 +23,8 @@ ARG TARGETARCH
2323
WORKDIR /app
2424

2525
ENV REPO=https://github.com/NethermindEth/nethermind.git
26-
ENV VERSION=1.31.0
27-
ENV COMMIT=a7337ba9e29a5e9384c7dfad72be6c7ab576d907
26+
ENV VERSION=1.31.11
27+
ENV COMMIT=2be1890ee4f21f921a471de058dcb57937bd9b90
2828
RUN git clone $REPO --branch $VERSION --single-branch . && \
2929
git switch -c $VERSION
3030
RUN bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'

0 commit comments

Comments
 (0)