Skip to content

Commit 6b11d55

Browse files
authored
Merge pull request #24 from macbre/alpine-3.13
FROM alpine:3.13 AS base
2 parents f9291bb + 9bbc569 commit 6b11d55

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ARG CONFIG="\
6060
--add-module=/tmp/lua-nginx-module-${LUA_NGINX_MODULE_VERSION} \
6161
"
6262

63-
FROM alpine:3.12 AS base
63+
FROM alpine:3.13 AS base
6464
LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
6565

6666
ARG NGINX_VERSION
@@ -122,7 +122,7 @@ RUN \
122122

123123
RUN \
124124
export LUAJIT_LIB=/usr/lib \
125-
&& export LUAJIT_INC=/usr/include/luajit-2.1 \
125+
&& export LUAJIT_INC=/usr/include/moonjit-2.2 \
126126
&& echo "Compiling nginx $NGINX_VERSION with brotli $NGX_BROTLI_COMMIT and lua nginx module v$LUA_NGINX_MODULE_VERSION ..." \
127127
&& cd /usr/src/nginx-$NGINX_VERSION \
128128
&& ./configure $CONFIG --with-debug \
@@ -167,7 +167,7 @@ RUN \
167167
| xargs -r apk info --installed \
168168
| sort -u > /tmp/runDeps.txt
169169

170-
FROM alpine:3.12
170+
FROM alpine:3.13
171171
ARG NGINX_VERSION
172172
ARG NGX_BROTLI_COMMIT
173173
ARG LUA_NGINX_MODULE_VERSION

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ docker pull macbre/nginx-brotli:1.19.7
1515
```
1616
$ docker run -it macbre/nginx-brotli nginx -V
1717
nginx version: nginx/1.19.7
18-
built by gcc 9.3.0 (Alpine 9.3.0)
19-
built with OpenSSL 1.1.1j 16 Feb 2021 (running with OpenSSL 1.1.1i 8 Dec 2020)
18+
built by gcc 10.2.1 20201203 (Alpine 10.2.1_pre1)
19+
built with OpenSSL 1.1.1j 16 Feb 2021
2020
TLS SNI support enabled
2121
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-stream_realip_module --with-stream_geoip_module=dynamic --with-http_slice_module --with-mail --with-mail_ssl_module --with-compat --with-file-aio --with-http_v2_module --add-module=/usr/src/ngx_brotli --with-ld-opt=-Wl,-rpath,/usr/lib --add-module=/tmp/ngx_devel_kit-0.3.1 --add-module=/tmp/lua-nginx-module-0.10.14
2222
```

0 commit comments

Comments
 (0)