From da4c3722825d5ee950865537773aff0d0899633b Mon Sep 17 00:00:00 2001 From: Platon Efimov Date: Thu, 23 Feb 2023 16:10:29 +0700 Subject: [PATCH] RediSearch build fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a49c45..32f1955 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY --from=redis /usr/local/ /usr/local/ ARG MODULE=RediSearch ARG VERSION=v2.6.5 WORKDIR /modules -RUN git clone --depth 1 --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git +RUN git clone --recursive --depth 1 --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git WORKDIR /modules/${MODULE} # BULD RUN make setup