-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
76 lines (66 loc) · 2.69 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
ARG VERSION=1.19.1
FROM nginx:${VERSION} AS builder
ARG VERSION
ENV NGINX_VERSION=${VERSION}
RUN apt-get update &&\
apt-get install -y build-essential git wget libpcre3 libpcre3-dev libssl-dev zlib1g-dev
RUN git clone git://github.com/vozlt/nginx-module-vts.git /tmp/nginx-module-vts &&\
git clone git://github.com/openresty/headers-more-nginx-module /tmp/headers-more-nginx-module &&\
git clone git://github.com/google/ngx_brotli /tmp/ngx_brotli &&\
cd /tmp/ngx_brotli && git submodule update --init && cd / &&\
wget http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz &&\
tar -xzf nginx-${NGINX_VERSION}.tar.gz &&\
cd nginx-${NGINX_VERSION} &&\
./configure\
--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-compat\
--with-file-aio\
--with-threads\
--with-http_addition_module\
--with-http_auth_request_module\
--with-http_dav_module\
--with-http_flv_module\
--with-http_gunzip_module\
--with-http_gzip_static_module\
--with-http_mp4_module\
--with-http_random_index_module\
--with-http_realip_module\
--with-http_secure_link_module\
--with-http_slice_module\
--with-http_ssl_module\
--with-http_stub_status_module\
--with-http_sub_module\
--with-http_v2_module\
--with-mail\
--with-mail_ssl_module\
--with-stream\
--with-stream_realip_module\
--with-stream_ssl_module\
--with-stream_ssl_preread_module\
--with-cc-opt='-g -O2 -fdebug-prefix-map=/data/builder/debuild/nginx-${NGINX_VERSION}/debian/debuild-base/nginx-${NGINX_VERSION}=. -specs=/usr/share/dpkg/no-pie-compile.specs -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC'\
--with-ld-opt='-specs=/usr/share/dpkg/no-pie-link.specs -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie'\
--add-module=/tmp/nginx-module-vts\
--add-module=/tmp/headers-more-nginx-module\
--add-module=/tmp/ngx_brotli &&\
make &&\
make install
FROM nginx:${VERSION} AS runtime
LABEL com.softonic.logType="nginx-json"
COPY --from=builder /etc/nginx /etc/nginx
COPY --from=builder /usr/sbin/nginx /usr/sbin/nginx
ADD ./rootfs/ /
ENTRYPOINT ["/bin/bash", "-c", "cat /etc/nginx/conf.d/*.template | envsubst '${APPLICATION}' > /etc/nginx/conf.d/00-default.conf && exec nginx -g 'daemon off;'"]