mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
27 lines
1.0 KiB
Docker
27 lines
1.0 KiB
Docker
|
FROM nginx AS build
|
||
|
|
||
|
WORKDIR /src
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y git gcc make g++ cmake perl libunwind-dev golang && \
|
||
|
git clone https://boringssl.googlesource.com/boringssl && \
|
||
|
mkdir boringssl/build && \
|
||
|
cd boringssl/build && \
|
||
|
cmake .. && \
|
||
|
make
|
||
|
|
||
|
RUN apt-get install -y mercurial libperl-dev libpcre3-dev zlib1g-dev libxslt1-dev libgd-ocaml-dev libgeoip-dev && \
|
||
|
hg clone https://hg.nginx.org/nginx-quic && \
|
||
|
hg clone http://hg.nginx.org/njs && \
|
||
|
cd nginx-quic && \
|
||
|
hg update quic && \
|
||
|
auto/configure `nginx -V 2>&1 | sed "s/ \-\-/ \\\ \n\t--/g" | grep "\-\-" | grep -ve opt= -e param= -e build=` \
|
||
|
--build=nginx-quic --with-debug \
|
||
|
--with-http_v3_module --with-http_quic_module --with-stream_quic_module \
|
||
|
--with-cc-opt="-I/src/boringssl/include" --with-ld-opt="-L/src/boringssl/build/ssl -L/src/boringssl/build/crypto" && \
|
||
|
make
|
||
|
|
||
|
FROM nginx
|
||
|
COPY --from=build /src/nginx-quic/objs/nginx /usr/sbin
|
||
|
RUN /usr/sbin/nginx -V > /dev/stderr
|
||
|
EXPOSE 80 443
|