From ab7f9b9cec2cf2c6cd8a3b5c04e202c2648ca932 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Fri, 12 Jul 2024 00:02:40 +0200 Subject: [PATCH] fix --- op-zora-archive-debug.yml | 2 -- op/Dockerfile.debug | 6 ++---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/op-zora-archive-debug.yml b/op-zora-archive-debug.yml index 13b84905..8d81fb6d 100644 --- a/op-zora-archive-debug.yml +++ b/op-zora-archive-debug.yml @@ -7,9 +7,7 @@ services: dockerfile: Dockerfile.debug args: OP_GETH_VERSION: v1.101315.2 - ARG OP_GETH_COMMIT: 7c2819836018bfe0ca07c4e4955754834ffad4e0 OP_NODE_VERSION: v1.7.7 - OP_NODE_COMMIT: f8143c8cbc4cc0c83922c53f17a1e47280673485 expose: - 8545 # RPC / Websocket - 18322 # P2P TCP (currently unused) diff --git a/op/Dockerfile.debug b/op/Dockerfile.debug index 895ecf26..adc63a41 100644 --- a/op/Dockerfile.debug +++ b/op/Dockerfile.debug @@ -27,8 +27,7 @@ ENV 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 . && \ - git switch -c branch-$OP_NODE_VERSION && \ - bash -c '[ "$(git rev-parse HEAD)" = "$OP_NODE_COMMIT" ]' + git switch -c branch-$OP_NODE_VERSION # Install pnpm RUN npm install -g pnpm && \ @@ -73,8 +72,7 @@ ARG OP_GETH_COMMIT # avoid depth=1, so the geth build can read tags RUN git clone $OP_GETH_REPO --branch $OP_GETH_VERSION --single-branch . && \ - git switch -c branch-$OP_GETH_VERSION && \ - bash -c '[ "$(git rev-parse HEAD)" = "$OP_GETH_COMMIT" ]' + git switch -c branch-$OP_GETH_VERSION RUN go run build/ci.go install -static ./cmd/geth