From e661a3fd5a06f854b26717c1910f4d9ace13c69f Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Thu, 19 Oct 2017 23:38:57 +0200 Subject: [PATCH] reverse: brotli temp fix --- reverse/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reverse/Dockerfile b/reverse/Dockerfile index 33f1f0a..053413f 100644 --- a/reverse/Dockerfile +++ b/reverse/Dockerfile @@ -71,7 +71,9 @@ RUN NB_CORES=${BUILD_CORES-$(getconf _NPROCESSORS_CONF)} \ # Brotli && cd /tmp && git clone https://github.com/bagder/libbrotli --depth=1 \ - && cd libbrotli && ./autogen.sh && ./configure && make -j ${NB_CORES} && make install \ + && cd libbrotli && ./autogen.sh && ./configure \ + && mkdir brotli/c/tools/.deps && touch brotli/c/tools/.deps/brotli-brotli.Po \ + && make -j ${NB_CORES} && make install \ && cd /tmp && git clone https://github.com/google/ngx_brotli --depth=1 \ && cd ngx_brotli && git submodule update --init && cd /tmp \