From 593f8be66da0ec0b183bbbb705cd44355cbd7f21 Mon Sep 17 00:00:00 2001 From: ctucx Date: Fri, 7 Feb 2020 23:33:29 +0100 Subject: [PATCH] [update] dockerfiles --- docker/Dockerfile.nginx | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) 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