@@ -2,7 +2,7 @@ FROM alpine:3.4
22
33MAINTAINER NGINX Docker Maintainers "docker-maint@nginx.com"
44
5- ENV NGINX_VERSION 1.11.2
5+ ENV NGINX_VERSION 1.11.3
66
77RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \
88 && CONFIG="\
@@ -41,6 +41,7 @@ RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \
4141 --with-threads \
4242 --with-stream \
4343 --with-stream_ssl_module \
44+ --with-stream_geoip_module=dynamic \
4445 --with-http_slice_module \
4546 --with-mail \
4647 --with-mail_ssl_module \
@@ -81,6 +82,7 @@ RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \
8182 && mv objs/ngx_http_image_filter_module.so objs/ngx_http_image_filter_module-debug.so \
8283 && mv objs/ngx_http_geoip_module.so objs/ngx_http_geoip_module-debug.so \
8384 && mv objs/ngx_http_perl_module.so objs/ngx_http_perl_module-debug.so \
85+ && mv objs/ngx_stream_geoip_module.so objs/ngx_stream_geoip_module-debug.so \
8486 && ./configure $CONFIG \
8587 && make \
8688 && make install \
@@ -94,6 +96,7 @@ RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \
9496 && install -m755 objs/ngx_http_image_filter_module-debug.so /usr/lib/nginx/modules/ngx_http_image_filter_module-debug.so \
9597 && install -m755 objs/ngx_http_geoip_module-debug.so /usr/lib/nginx/modules/ngx_http_geoip_module-debug.so \
9698 && install -m755 objs/ngx_http_perl_module-debug.so /usr/lib/nginx/modules/ngx_http_perl_module-debug.so \
99+ && install -m755 objs/ngx_stream_geoip_module-debug.so /usr/lib/nginx/modules/ngx_stream_geoip_module-debug.so \
97100 && ln -s ../../usr/lib/nginx/modules /etc/nginx/modules \
98101 && strip /usr/sbin/nginx* \
99102 && strip /usr/lib/nginx/modules/*.so \
0 commit comments