From 86642de9ca2a81db1a4afe9b90ac8743e4c8d1e1 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Sat, 26 Oct 2024 07:38:22 +0200 Subject: [PATCH] maybe fix --- op/Dockerfile.debug | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/op/Dockerfile.debug b/op/Dockerfile.debug index 9efc76de..48f4aa95 100644 --- a/op/Dockerfile.debug +++ b/op/Dockerfile.debug @@ -30,23 +30,23 @@ RUN apt-get update && apt-get install -y \ ARG OP_NODE_REPO=https://github.com/ethereum-optimism/optimism.git ARG OP_NODE_VERSION ARG OP_NODE_COMMIT -RUN git clone $OP_NODE_REPO --branch op-node/$OP_NODE_VERSION --single-branch . && \ +RUN git clone $OP_NODE_REPO --branch $OP_NODE_VERSION --single-branch . && \ git switch -c branch-$OP_NODE_VERSION # Install pnpm -RUN npm install -g pnpm && \ - curl -L https://foundry.paradigm.xyz | bash +#RUN npm install -g pnpm && \ +# curl -L https://foundry.paradigm.xyz | bash -ENV PATH="${PATH}:/root/.foundry/bin" -RUN /root/.foundry/bin/foundryup +#ENV PATH="${PATH}:/root/.foundry/bin" +#RUN /root/.foundry/bin/foundryup # Assuming the op-node project is located at the root of the repository # Install dependencies and build the project -RUN cd op-node && pnpm install && pnpm build && ls +#RUN cd op-node && pnpm install && pnpm build && ls # Now, switch to the Golang image for the rest of the operations -FROM golang:1.21 as op-node +FROM golang:1.22 as op-node WORKDIR /app