-
Notifications
You must be signed in to change notification settings - Fork 18
/
Dockerfile
192 lines (178 loc) · 6.96 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# Image includes:
# - nginx (with few common modules)
# - nginx_upstream_module (for tarantool)
# - nginx_lua_module (required by luajit)
# - nginx_devel_kit (required by luajit)
# - luajit
# - luarocks
# - lua rock "lua-cjson" (is necessary to work with tarantool response, can be extended with env variable)
FROM alpine:3.5
MAINTAINER Konstantin Nazarov "[email protected]"
RUN addgroup -S nginx \
&& adduser -S -G nginx nginx \
&& apk add --no-cache 'su-exec>=0.2'
ENV NGINX_VERSION=1.11.1 \
NGINX_UPSTREAM_MODULE_URL=https://github.com/tarantool/nginx_upstream_module.git \
NGINX_UPSTREAM_MODULE_COMMIT=3736239b51cc48776ee49088d7d674ff37791544 \
NGINX_GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8
ENV NGINX_LUA_MODULE_URL=https://github.com/openresty/lua-nginx-module \
NGINX_LUA_MODULE_PATH=/usr/src/lua-nginx-module \
NGINX_LUA_MODULE_VERSION=0.10.15rc1
ENV NGINX_DEVEL_KIT_URL=https://github.com/simpl/ngx_devel_kit \
NGINX_DEVEL_KIT_PATH=/usr/src/nginx-devel-kit
ENV LUAJIT_VERSION=2.0.5 \
LUAJIT_URL=http://luajit.org/git/luajit-2.0.git \
LUAJIT_PATH=/usr/src/luajit \
LUAJIT_LIB=/usr/local/lib \
LUAJIT_INC=/usr/local/include/luajit-2.0
ENV LUAROCKS_VERSION=2.4.2 \
LUAROCKS_URL=https://github.com/luarocks/luarocks \
LUAROCKS_PATH=/usr/src/luarocks
ENV LUAROCKS_ROCKS="\
lua-cjson\
"
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
build-base \
cmake \
linux-headers \
libressl-dev \
pcre-dev \
zlib-dev \
libxslt-dev \
gd-dev \
geoip-dev \
git \
tar \
gnupg \
curl \
perl-dev \
unzip \
gcc \
perl \
&& apk add --no-cache --virtual .run-deps \
ca-certificates \
libressl \
pcre \
zlib \
libxslt \
gd \
geoip \
gettext \
libgcc \
&& git config --global http.postBuffer 524288000 \
&& : "---------- download nginx-devel-kit ----------" \
&& git clone "$NGINX_DEVEL_KIT_URL" $NGINX_DEVEL_KIT_PATH \
&& : "---------- download nginx-lua-module ----------" \
&& git clone "$NGINX_LUA_MODULE_URL" $NGINX_LUA_MODULE_PATH \
&& git -C $NGINX_LUA_MODULE_PATH checkout tags/v$NGINX_LUA_MODULE_VERSION \
&& : "---------- download luajit ----------" \
&& git clone "$LUAJIT_URL" $LUAJIT_PATH \
&& git -C $LUAJIT_PATH checkout tags/v$LUAJIT_VERSION \
&& make -C $LUAJIT_PATH \
&& make -C $LUAJIT_PATH install \
&& : "---------- download and install luarocks (depends on luajit) ----------" \
&& git clone $LUAROCKS_URL $LUAROCKS_PATH \
&& git -C $LUAROCKS_PATH checkout tags/v$LUAROCKS_VERSION \
&& ln -s /usr/local/bin/luajit-$LUAJIT_VERSION /usr/local/bin/lua \
&& cd $LUAROCKS_PATH \
&& ./configure --with-lua-bin=/usr/local/bin --with-lua-include=/usr/src/luajit/src/ \
&& make build \
&& make install \
&& cd \
&& : "---------- download nginx-upstream-module ----------" \
&& git clone "$NGINX_UPSTREAM_MODULE_URL" /usr/src/nginx_upstream_module \
&& git -C /usr/src/nginx_upstream_module checkout "${NGINX_UPSTREAM_MODULE_COMMIT}" \
&& git -C /usr/src/nginx_upstream_module submodule init \
&& git -C /usr/src/nginx_upstream_module submodule update \
&& make -C /usr/src/nginx_upstream_module yajl \
&& make -C /usr/src/nginx_upstream_module msgpack \
&& : "---------- download nginx ----------" \
&& curl -fSL http://nginx.org/download/nginx-$NGINX_VERSION.tar.gz \
-o nginx.tar.gz \
&& curl -fSL http://nginx.org/download/nginx-$NGINX_VERSION.tar.gz.asc \
-o nginx.tar.gz.asc \
&& : "---------- verify signatures ----------" \
&& mkdir -p /usr/src/nginx \
&& tar -xzf nginx.tar.gz -C /usr/src/nginx \
--strip-components=1 \
&& cd /usr/src/nginx \
&& : "---------- build nginx ----------" \
&& ./configure \
--with-cc-opt='-I/usr/src/nginx_upstream_module/third_party/third_party/msgpuck -I /usr/src/nginx_upstream_module/third_party/yajl/build/yajl-2.1.0/include' \
--with-ld-opt='/usr/src/nginx_upstream_module/third_party/yajl/build/yajl-2.1.0/lib/libyajl_s.a -L /usr/src/nginx_upstream_module/third_party/third_party/msgpuck' \
--add-module=/usr/src/nginx_upstream_module \
--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-http_perl_module=dynamic \
--with-threads \
--with-stream \
--with-stream_ssl_module \
--with-http_slice_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-http_v2_module \
--with-ipv6 \
--with-ld-opt="-Wl,-rpath,$LUAJIT_LIB" \
--add-module=$NGINX_DEVEL_KIT_PATH \
--add-module=$NGINX_LUA_MODULE_PATH \
&& make \
&& make install \
&& rm -rf /etc/nginx/html/ \
&& mkdir /etc/nginx/conf.d/ \
&& mkdir -p /usr/share/nginx/html/ \
&& install -m644 html/index.html /usr/share/nginx/html/ \
&& install -m644 html/50x.html /usr/share/nginx/html/ \
&& : "---------- install module deps ----------" \
&& runDeps="$( \
scanelf --needed --nobanner /usr/sbin/nginx /usr/lib/nginx/modules/*.so \
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
| sort -u \
| xargs -r apk info --installed \
| sort -u \
)" \
&& apk add --virtual .run-deps $runDeps \
&& : "---------- install lua rocks ----------" \
&& for rock in $LUAROCKS_ROCKS; do luarocks install $rock; done \
&& : "---------- remove build deps ----------" \
&& rm -rf /usr/src/nginx \
&& rm -rf /usr/src/nginx_upstream_module \
&& apk del .build-deps \
&& : "---------- redirect logs to default collector ----------" \
&& ln -sf /dev/stdout /var/log/nginx/access.log \
&& ln -sf /dev/stderr /var/log/nginx/error.log
COPY nginx.conf /etc/nginx/nginx.conf
COPY nginx.vh.default.conf /etc/nginx/conf.d/default.conf
VOLUME ["/var/cache/nginx"]
EXPOSE 80 443
CMD ["nginx", "-g", "daemon off;"]