update boring-nginx to 1.11.8 with tls1.3 patch (#81)

This commit is contained in:
Arnaud Astruc
2017-01-15 20:58:40 +01:00
committed by Wonderfall
parent 2ac8b719f0
commit 71a9f2fcab
2 changed files with 13 additions and 12 deletions

View File

@ -3,7 +3,7 @@ MAINTAINER Wonderfall <wonderfall@schrodinger.io>
ENV UID=991 GID=991
ARG NGINX_VERSION=1.11.6
ARG NGINX_VERSION=1.11.8
ARG GPG_NGINX="B0F4 2533 73F8 F6F5 10D4 2178 520A 9993 A1C0 52F8"
ARG BUILD_CORES
@ -42,7 +42,8 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a
&& git clone https://github.com/google/ngx_brotli --depth=1 \
&& git clone https://github.com/openresty/headers-more-nginx-module --depth=1 \
&& git clone https://boringssl.googlesource.com/boringssl --depth=1 \
&& cd boringssl \
&& cd /tmp/ngx_brotli && git submodule update --init \
&& cd /tmp/boringssl \
&& patch -p1 < /tmp/tls1.3.patch \
&& mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. \
&& make -j ${NB_CORES} && cd .. \