mirror of
https://github.com/dcarrillo/docker-nginx.git
synced 2024-11-14 21:41:13 +00:00
81 lines
2.5 KiB
Docker
81 lines
2.5 KiB
Docker
|
FROM alpine:3.10
|
||
|
|
||
|
ARG ARG_NGINX_VERSION
|
||
|
ARG ARG_NGX_GEOIP2_VERSION
|
||
|
|
||
|
ENV NGINX_VERSION $ARG_NGINX_VERSION
|
||
|
ENV NGX_GEOIP2_VERSION $ARG_NGX_GEOIP2_VERSION
|
||
|
|
||
|
RUN CONFIG="\
|
||
|
--add-module=/tmp/ngx_http_geoip2_module-$NGX_GEOIP2_VERSION \
|
||
|
--with-stream \
|
||
|
--with-http_ssl_module \
|
||
|
--with-http_v2_module \
|
||
|
--with-http_stub_status_module \
|
||
|
--without-http-cache \
|
||
|
--without-http_autoindex_module \
|
||
|
--without-http_browser_module \
|
||
|
--without-http_empty_gif_module \
|
||
|
--without-http_limit_conn_module \
|
||
|
--without-http_map_module \
|
||
|
--without-http_memcached_module \
|
||
|
--without-http_referer_module \
|
||
|
--without-http_scgi_module \
|
||
|
--without-http_split_clients_module \
|
||
|
--without-http_ssi_module \
|
||
|
--without-http_upstream_hash_module \
|
||
|
--without-http_upstream_ip_hash_module \
|
||
|
--without-http_upstream_keepalive_module \
|
||
|
--without-http_upstream_least_conn_module \
|
||
|
--without-http_upstream_zone_module \
|
||
|
--without-http_userid_module \
|
||
|
--without-http_uwsgi_module \
|
||
|
--without-mail_imap_module \
|
||
|
--without-mail_pop3_module \
|
||
|
--without-mail_smtp_module \
|
||
|
--without-select_module \
|
||
|
--without-stream_access_module \
|
||
|
--without-stream_limit_conn_module \
|
||
|
--without-stream_upstream_hash_module \
|
||
|
--without-stream_upstream_least_conn_module \
|
||
|
--without-stream_upstream_zone_module \
|
||
|
" \
|
||
|
&& apk add --no-cache --virtual .build-deps \
|
||
|
gcc \
|
||
|
libc-dev \
|
||
|
make \
|
||
|
openssl-dev \
|
||
|
pcre-dev \
|
||
|
zlib-dev \
|
||
|
linux-headers \
|
||
|
curl \
|
||
|
gnupg1 \
|
||
|
libxslt-dev \
|
||
|
gd-dev \
|
||
|
libmaxminddb-dev \
|
||
|
&& apk add --no-cache \
|
||
|
libmaxminddb \
|
||
|
pcre \
|
||
|
\
|
||
|
# installation
|
||
|
&& curl -sL -o /tmp/ngx_http_geoip2_module.tar.gz https://github.com/leev/ngx_http_geoip2_module/archive/$NGX_GEOIP2_VERSION.tar.gz \
|
||
|
&& tar -zxC /tmp -f /tmp/ngx_http_geoip2_module.tar.gz \
|
||
|
\
|
||
|
&& curl -sL -o /tmp/nginx.tar.gz http://nginx.org/download/nginx-$NGINX_VERSION.tar.gz \
|
||
|
&& tar -zxC /tmp -f /tmp/nginx.tar.gz \
|
||
|
&& cd /tmp/nginx-$NGINX_VERSION \
|
||
|
&& ./configure $CONFIG \
|
||
|
&& make && make install \
|
||
|
&& mkdir /usr/local/nginx/run \
|
||
|
\
|
||
|
# clean up
|
||
|
&& apk del .build-deps \
|
||
|
&& rm -rf /tmp/ng*
|
||
|
|
||
|
STOPSIGNAL SIGTERM
|
||
|
|
||
|
HEALTHCHECK --interval=10s --retries=2 --timeout=3s \
|
||
|
CMD curl -f http://localhost/ || exit 1
|
||
|
|
||
|
CMD ["/usr/local/nginx/sbin/nginx", "-g", "daemon off;"]
|