diff --git a/alpine/Dockerfile b/alpine/Dockerfile index b30c180..118c2b8 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -38,6 +38,7 @@ RUN echo "==> Installing dependencies..." \ --without-http_userid_module \ --without-http_uwsgi_module \ --without-http_scgi_module \ + --with-http_stub_status_module \ -j${NPROC} \ && echo "==> Building OpenResty..." \ && make -j${NPROC} \ diff --git a/debian/Dockerfile b/debian/Dockerfile index 266cd22..98f4bcd 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -37,6 +37,7 @@ RUN cd /root \ --without-http_userid_module \ --without-http_uwsgi_module \ --without-http_scgi_module \ + --with-http_stub_status_module \ -j${NPROC} \ && echo "==> Building OpenResty..." \ && make -j${NPROC} \