From 3f8d5e44c58c299c883cfeef522a9e8ec5889158 Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Fri, 5 Jan 2024 12:00:24 -0600 Subject: [PATCH] clients/erigon: Fix git dockerfile (#965) --- 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