[update] dockerfiles

This commit is contained in:
ctucx 2020-02-07 23:33:29 +01:00
parent eaa65fa8ad
commit 593f8be66d

View file

@ -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