Skip to content

Commit f48d943

Browse files
committed
Install dynamic modules packages: xslt, image_filter, geoip.
Fixes nginx#56.
1 parent 14c1b93 commit f48d943

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

mainline/jessie/Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ ENV NGINX_VERSION 1.9.12-1~jessie
77
RUN apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 \
88
&& echo "deb http://nginx.org/packages/mainline/debian/ jessie nginx" >> /etc/apt/sources.list \
99
&& apt-get update \
10-
&& apt-get install -y ca-certificates nginx=${NGINX_VERSION} gettext-base \
10+
&& apt-get install -y \
11+
ca-certificates \
12+
nginx=${NGINX_VERSION} \
13+
nginx-module-xslt \
14+
nginx-module-geoip \
15+
nginx-module-image-filter \
16+
gettext-base \
1117
&& rm -rf /var/lib/apt/lists/*
1218

1319
# forward request and error logs to docker log collector

0 commit comments

Comments
 (0)