File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
docker/debian-nginx-ssl-ja3 Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -88,8 +88,7 @@ RUN git clone https://github.com/openresty/test-nginx.git
88
88
RUN cd test-nginx/ && cpanm .
89
89
90
90
# Configure, make and install
91
- RUN export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
92
- RUN ./auto/configure --add-module=/build/nginx-ssl-ja3 --with-http_ssl_module --with-stream_ssl_module --with-debug --with-stream --with-cc-opt="-fsanitize=address -O -fno-omit-frame-pointer" --with-ld-opt="-Wl,-E -lasan"
91
+ RUN ./auto/configure --add-module=/build/nginx-ssl-ja3 --with-http_ssl_module --with-stream_ssl_module --with-stream --with-debug --with-ld-opt="-L/usr/local/lib -Wl,-E"
93
92
RUN make install
94
93
95
94
# Install files
@@ -111,5 +110,7 @@ RUN echo '' | tee -a /root/.bashrc
111
110
RUN echo 'export ASAN_OPTIONS=symbolize=1' | tee -a /root/.bashrc
112
111
RUN echo 'export export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer' | tee -a /root/.bashrc
113
112
RUN echo '' | tee -a /root/.bashrc
114
- RUN echo 'TO TEST RUN:\n nginx &\n openssl s_client -connect 127.0.0.1:12345 -cipher "AES128-SHA" -curves secp521r1' | tee -a /build/TEST.README
113
+
114
+ RUN echo 'TO COMPILE RUN:\n cd nginx\n ASAN_OPTIONS=symbolize=1 ./auto/configure --add-module=/build/nginx-ssl-ja3 --with-http_ssl_module --with-stream_ssl_module --with-debug --with-stream --with-cc-opt="-fsanitize=address -O -fno-omit-frame-pointer" --with-ld-opt="-L/usr/local/lib -Wl,-E -lasan"\n make install' | tee -a /build/COMPILE.ASAN.README
115
+ RUN echo 'TO TEST RUN:\n nginx &\n openssl s_client -connect 127.0.0.1:12345 -cipher "AES128-SHA" -curves secp521r1' | tee -a /build/TEST.README
115
116
You can’t perform that action at this time.
0 commit comments