From c427620a9cdb0fd20e32fbc8eef80c4874b4b4d4 Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Fri, 5 Jan 2024 17:45:50 +0000 Subject: [PATCH] clients/erigon: Fix git dockerfile --- clients/erigon/Dockerfile.git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/erigon/Dockerfile.git b/clients/erigon/Dockerfile.git index a5861a8a8b..a21616ca09 100644 --- a/clients/erigon/Dockerfile.git +++ b/clients/erigon/Dockerfile.git @@ -10,7 +10,7 @@ RUN echo "Cloning: $github - $tag" \ && apk add bash build-base ca-certificates git jq \ && git clone --depth 1 --branch $tag https://github.com/$github \ && cd erigon \ - && make erigon \ + && make BUILD_TAGS=nosqlite,noboltdb,nosilkworm erigon \ && cp build/bin/erigon /usr/local/bin/erigon ## Final stage: Sets up the environment for running erigon