From: Vladimír Čunát Date: Thu, 21 Sep 2017 13:57:51 +0000 (+0200) Subject: Dockerfile: the aho-corasick module is now needed X-Git-Tag: v1.4.0~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58eea9740ee2da5d3a57b3352108b357a0a44aa4;p=thirdparty%2Fknot-resolver.git Dockerfile: the aho-corasick module is now needed ... even if only building --- diff --git a/scripts/Dockerfile b/scripts/Dockerfile index f95150578..0f9435e42 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -20,7 +20,8 @@ CMD ["/usr/local/sbin/kresd"] RUN \ apk --update add ${RUN_PKGS} && \ apk add --virtual build-dep ${BUILD_PKGS} && \ -git clone https://gitlab.labs.nic.cz/knot/knot-resolver.git /tmp/build && \ +git clone --depth 1 --recurse-submodules=modules/policy/lua-aho-corasick \ +https://gitlab.labs.nic.cz/knot/knot-resolver.git /tmp/build && \ cd /tmp/build && \ ./scripts/bootstrap-depends.sh /usr/local && \ make -j4 install && \