diff --git a/reth.Dockerfile b/reth.Dockerfile index 91f3d7f3..9f812fc0 100644 --- a/reth.Dockerfile +++ b/reth.Dockerfile @@ -18,6 +18,7 @@ RUN apt-get update && apt-get install -y \ automake \ libtool \ zlib1g-dev \ + libclang-dev \ && rm -rf /var/lib/apt/lists/* # Set up clang as default C/C++ compiler @@ -282,7 +283,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ elif [ "$BUILD_ALETHIA_RETH" = "true" ]; then \ echo "DEBUG: Taking ALETHIA_RETH branch" && \ echo "Building alethia-reth (Taiko)" && \ - cargo build --profile $PROFILE --locked --bin alethia-reth && \ + cargo build --profile $PROFILE --bin alethia-reth && \ cp target/$PROFILE/alethia-reth /usr/local/bin/reth; \ else \ echo "DEBUG: Taking DEFAULT branch" && \