diff --git a/reverse/Dockerfile b/reverse/Dockerfile index bf50f9d..fa0486f 100644 --- a/reverse/Dockerfile +++ b/reverse/Dockerfile @@ -38,6 +38,7 @@ RUN NB_CORES=${BUILD_CORES-$(getconf _NPROCESSORS_CONF)} \ && apk add \ ${BUILD_DEPS} \ pcre \ + curl \ zlib \ libgcc \ libstdc++ \ @@ -105,7 +106,7 @@ RUN NB_CORES=${BUILD_CORES-$(getconf _NPROCESSORS_CONF)} \ --sbin-path=/usr/local/sbin/nginx \ --with-cc-opt="-O3 -fPIE -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -Wno-deprecated-declarations -I ../boringssl/.openssl/include/" \ --with-ld-opt="-lrt -ljemalloc -Wl,-Bsymbolic-functions -Wl,-z,relro -L ../boringssl/.openssl/lib" \ - --with-openssl-opt='no-async enable-ec_nistp_64_gcc_128 no-shared no-ssl2 no-ssl3 no-comp no-idea no-weak-ssl-ciphers -DOPENSSL_NO_HEARTBEATS -m64 -march=native -mtune=native -O3 -fPIE -fstack-protector-strong -D_FORTIFY_SOURCE=2' \ + --with-openssl-opt='no-async enable-ec_nistp_64_gcc_128 no-shared no-ssl2 no-ssl3 no-comp no-idea no-weak-ssl-ciphers -DOPENSSL_NO_HEARTBEATS -O3 -fPIE -fstack-protector-strong -D_FORTIFY_SOURCE=2' \ --with-openssl=/tmp/openssl-${OPENSSL_VERSION} \ --http-log-path=/nginx/log/nginx_access.log \ --error-log-path=/nginx/log/nginx_error.log \