Skip to content

Commit

Permalink
fix: update release/1.29.0 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdevMac committed Oct 2, 2024
1 parent bbab781 commit 7188de1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nethermind/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ WORKDIR /app

ENV REPO=https://github.com/NethermindEth/nethermind.git
ENV VERSION=1.29.0
ENV COMMIT=917f5349517118bf5c73c362c3902d61e68e5b40
ENV COMMIT=7320938e5fe74ad6ac1782ce723ddb7bb7d3d78a
RUN git clone $REPO --branch release/$VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
git switch -c branch-$VERSION
RUN bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'

RUN arch=$([ "$TARGETARCH" = "amd64" ] && echo "x64" || echo "$TARGETARCH") && \
dotnet publish src/Nethermind/Nethermind.Runner -c $BUILD_CONFIG -a $arch -o /publish --sc false
Expand All @@ -46,4 +46,4 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY nethermind/nethermind-entrypoint ./execution-entrypoint
COPY op-node-entrypoint .

CMD ["/usr/bin/supervisord"]
CMD ["/usr/bin/supervisord"]

0 comments on commit 7188de1

Please sign in to comment.