reverse: brotli temp fix

This commit is contained in:
Wonderfall 2017-10-19 23:38:57 +02:00 committed by GitHub
parent b6bdabe59c
commit e661a3fd5a

View File

@ -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 \