From bbe22b79f77b243824ec2e8361d3725d8a7d7319 Mon Sep 17 00:00:00 2001 From: Sam Kozin Date: Sat, 1 Aug 2015 17:38:48 +0300 Subject: [PATCH] Don't exclude FastCGI and Memcached modules Fixes #4 --- alpine/Dockerfile | 2 -- debian/Dockerfile | 2 -- 2 files changed, 4 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 50a4871..26b20ea 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -35,10 +35,8 @@ RUN echo "==> Installing dependencies..." \ --with-http_ssl_module \ --without-http_ssi_module \ --without-http_userid_module \ - --without-http_fastcgi_module \ --without-http_uwsgi_module \ --without-http_scgi_module \ - --without-http_memcached_module \ -j${NPROC} \ && echo "==> Building OpenResty..." \ && make -j${NPROC} \ diff --git a/debian/Dockerfile b/debian/Dockerfile index a12ae33..c1a519e 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -35,10 +35,8 @@ RUN cd /root \ --with-http_ssl_module \ --without-http_ssi_module \ --without-http_userid_module \ - --without-http_fastcgi_module \ --without-http_uwsgi_module \ --without-http_scgi_module \ - --without-http_memcached_module \ -j${NPROC} \ && echo "==> Building OpenResty..." \ && make -j${NPROC} \