diff --git a/docker/Dockerfile.nginx b/docker/Dockerfile.nginx index 76d7048..8d3eb7a 100644 --- a/docker/Dockerfile.nginx +++ b/docker/Dockerfile.nginx @@ -5,19 +5,20 @@ ARG GID=1000 ARG NGINX_VER=1.17.6 ARG NGINX_CONF="--prefix=/app --with-cc-opt='-static' \ - --with-ld-opt="-static" --with-cpu-opt=generic --with-pcre \ - --sbin-path=/app/nginx \ - --http-log-path=/app/log/access.log \ - --error-log-path=/app/log/error.log \ - --pid-path=/app/nginx.pid \ - --lock-path=/app/nginx.lock \ - --without-http_gzip_module \ - --without-http_uwsgi_module \ - --without-http_scgi_module \ + --with-ld-opt='-static' --with-cpu-opt=generic --with-pcre \ + --sbin-path=/app/nginx \ + --http-log-path=/app/log/access.log \ + --error-log-path=/app/log/error.log \ + --pid-path=/app/nginx.pid \ + --lock-path=/app/nginx.lock \ + --without-http_gzip_module \ + --without-http_uwsgi_module \ + --without-http_scgi_module \ --without-http_fastcgi_module \ - --without-http_memcached_module \ - --with-threads \ - --with-ld-opt='-static'" + --without-http_memcached_module \ + --without-http_empty_gif_module \ + --without-http_geo_module \ + --with-threads" WORKDIR /tmp