From 7f99fbe806de207d717761567b99512ae3002a7a Mon Sep 17 00:00:00 2001 From: Marcos Maceo Date: Thu, 10 Oct 2024 12:06:37 +0400 Subject: [PATCH] feat: update nethermind to latest version --- nethermind/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nethermind/Dockerfile b/nethermind/Dockerfile index 11c45cd..514d1db 100644 --- a/nethermind/Dockerfile +++ b/nethermind/Dockerfile @@ -22,8 +22,8 @@ WORKDIR /app ENV REPO=https://github.com/NethermindEth/nethermind.git ENV VERSION=1.29.0 ENV COMMIT=10412d1c3b502591db7d4bb80d26caf6045f165a -RUN git clone $REPO --branch release/$VERSION --single-branch . && \ - git switch -c branch-$VERSION +RUN git clone $REPO --branch $VERSION --single-branch . && \ + git switch -c $VERSION RUN bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' RUN TARGETARCH=${TARGETARCH#linux/} && \ arch=$([ "$TARGETARCH" = "amd64" ] && echo "x64" || echo "$TARGETARCH") && \