From 796c7f088c308053d5ea13d8211e3d23296ee5cb Mon Sep 17 00:00:00 2001 From: Henri Devieux Date: Wed, 18 Dec 2024 15:25:01 -0500 Subject: [PATCH] Install just in Dockerfilefiles --- geth/Dockerfile | 3 +++ reth/Dockerfile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/geth/Dockerfile b/geth/Dockerfile index 02d731d..34e9922 100644 --- a/geth/Dockerfile +++ b/geth/Dockerfile @@ -9,6 +9,9 @@ RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \ git switch -c branch-$VERSION && \ bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' +# Install 'just' +RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bin + RUN cd op-node && \ make VERSION=$VERSION op-node diff --git a/reth/Dockerfile b/reth/Dockerfile index f421344..9c06d95 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -9,6 +9,9 @@ RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \ git switch -c branch-$VERSION && \ bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' +# Install 'just' +RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bin + RUN cd op-node && \ make VERSION=$VERSION op-node