mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
125 lines
4.9 KiB
Docker
125 lines
4.9 KiB
Docker
|
FROM alpine:3.4
|
||
|
MAINTAINER Wonderfall <wonderfall@schrodinger.io>
|
||
|
|
||
|
ENV UID=991 GID=991
|
||
|
|
||
|
ARG NGINX_VERSION=1.11.4
|
||
|
ARG LIBRESSL_VERSION=2.5.0
|
||
|
ARG GPG_LIBRESSL="A1EB 079B 8D3E B92B 4EBD 3139 663A F51B D5E4 D8D5"
|
||
|
ARG GPG_NGINX="B0F4 2533 73F8 F6F5 10D4 2178 520A 9993 A1C0 52F8"
|
||
|
ARG BUILD_CORES
|
||
|
|
||
|
RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
|
||
|
&& NB_CORES=${BUILD_CORES-$(getconf _NPROCESSORS_CONF)} \
|
||
|
&& BUILD_DEPS=" \
|
||
|
build-base \
|
||
|
linux-headers \
|
||
|
ca-certificates \
|
||
|
automake \
|
||
|
autoconf \
|
||
|
git \
|
||
|
tar \
|
||
|
libtool \
|
||
|
pcre-dev \
|
||
|
zlib-dev \
|
||
|
binutils \
|
||
|
gnupg" \
|
||
|
&& apk -U add \
|
||
|
${BUILD_DEPS} \
|
||
|
pcre \
|
||
|
zlib \
|
||
|
libgcc \
|
||
|
libstdc++ \
|
||
|
su-exec \
|
||
|
openssl \
|
||
|
bind-tools \
|
||
|
tini@commuedge \
|
||
|
&& cd /tmp \
|
||
|
&& git clone https://github.com/bagder/libbrotli --depth=1 && cd libbrotli \
|
||
|
&& ./autogen.sh && ./configure && make -j ${NB_CORES} && make install \
|
||
|
&& cd /tmp \
|
||
|
&& git clone https://github.com/google/ngx_brotli --depth=1 \
|
||
|
&& git clone https://github.com/openresty/headers-more-nginx-module --depth=1 \
|
||
|
&& LIBRESSL_TARBALL="libressl-${LIBRESSL_VERSION}.tar.gz" \
|
||
|
&& wget -q http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${LIBRESSL_TARBALL} \
|
||
|
&& echo "Verifying ${LIBRESSL_TARBALL} using GPG..." \
|
||
|
&& wget -q http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${LIBRESSL_TARBALL}.asc \
|
||
|
&& wget -q http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl.asc \
|
||
|
&& gpg --import libressl.asc \
|
||
|
&& FINGERPRINT="$(LANG=C gpg --verify ${LIBRESSL_TARBALL}.asc ${LIBRESSL_TARBALL} 2>&1 \
|
||
|
| sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \
|
||
|
&& if [ -z "${FINGERPRINT}" ]; then echo "Warning! Invalid GPG signature!" && exit 1; fi \
|
||
|
&& if [ "${FINGERPRINT}" != "${GPG_LIBRESSL}" ]; then echo "Warning! Wrong GPG fingerprint!" && exit 1; fi \
|
||
|
&& echo "All seems good, now unpacking ${LIBRESSL_TARBALL}..." \
|
||
|
&& tar xzf ${LIBRESSL_TARBALL} \
|
||
|
&& NGINX_TARBALL="nginx-${NGINX_VERSION}.tar.gz" \
|
||
|
&& wget -q https://nginx.org/download/${NGINX_TARBALL} \
|
||
|
&& echo "Verifying ${NGINX_TARBALL} using GPG..." \
|
||
|
&& wget -q https://nginx.org/download/${NGINX_TARBALL}.asc \
|
||
|
&& wget -q https://nginx.org/keys/mdounin.key \
|
||
|
&& gpg --import mdounin.key \
|
||
|
&& FINGERPRINT="$(LANG=C gpg --verify ${NGINX_TARBALL}.asc ${NGINX_TARBALL} 2>&1 \
|
||
|
| sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \
|
||
|
&& if [ -z "${FINGERPRINT}" ]; then echo "Warning! Invalid GPG signature!" && exit 1; fi \
|
||
|
&& if [ "${FINGERPRINT}" != "${GPG_NGINX}" ]; then echo "Warning! Wrong GPG fingerprint!" && exit 1; fi \
|
||
|
&& echo "All seems good, now unpacking ${NGINX_TARBALL}..." \
|
||
|
&& tar xzf ${NGINX_TARBALL} && cd nginx-${NGINX_VERSION} \
|
||
|
&& wget -q https://raw.githubusercontent.com/felixbuenemann/sslconfig/updated-nginx-1.9.15-spdy-patch/patches/nginx_1_9_15_http2_spdy.patch -O spdy.patch \
|
||
|
&& patch -p1 < spdy.patch \
|
||
|
&& wget -q https://raw.githubusercontent.com/cloudflare/sslconfig/master/patches/nginx__dynamic_tls_records.patch \
|
||
|
&& patch -p1 < nginx__dynamic_tls_records.patch \
|
||
|
&& ./configure \
|
||
|
--prefix=/etc/nginx \
|
||
|
--sbin-path=/usr/sbin/nginx \
|
||
|
--with-cc-opt='-O3 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wno-deprecated-declarations' \
|
||
|
--with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' \
|
||
|
--with-openssl=/tmp/libressl-${LIBRESSL_VERSION} \
|
||
|
--with-http_ssl_module \
|
||
|
--with-http_v2_module \
|
||
|
--with-http_spdy_module \
|
||
|
--with-http_gzip_static_module \
|
||
|
--with-http_stub_status_module \
|
||
|
--with-file-aio \
|
||
|
--with-threads \
|
||
|
--with-pcre-jit \
|
||
|
--without-http_ssi_module \
|
||
|
--without-http_scgi_module \
|
||
|
--without-http_uwsgi_module \
|
||
|
--without-http_geo_module \
|
||
|
--without-http_autoindex_module \
|
||
|
--without-http_map_module \
|
||
|
--without-http_split_clients_module \
|
||
|
--without-http_memcached_module \
|
||
|
--without-http_empty_gif_module \
|
||
|
--without-http_browser_module \
|
||
|
--http-log-path=/var/log/nginx/access.log \
|
||
|
--error-log-path=/var/log/nginx/error.log \
|
||
|
--add-module=/tmp/headers-more-nginx-module \
|
||
|
--add-module=/tmp/ngx_brotli \
|
||
|
&& make -j ${NB_CORES} && make install && make clean \
|
||
|
&& strip -s /usr/sbin/nginx \
|
||
|
&& apk del ${BUILD_DEPS} \
|
||
|
&& rm -rf /tmp/* /var/cache/apk/* /root/.gnupg
|
||
|
|
||
|
COPY nginx.conf /etc/nginx/conf/nginx.conf
|
||
|
COPY run.sh /usr/local/bin/run.sh
|
||
|
COPY ngxpasswd /usr/local/bin/ngxpasswd
|
||
|
COPY ngxproxy /usr/local/bin/ngxproxy
|
||
|
COPY vhost_http.conf /etc/nginx/conf/vhost_http.conf
|
||
|
COPY vhost_https.conf /etc/nginx/conf/vhost_https.conf
|
||
|
COPY ssl_params /etc/nginx/conf/ssl_params
|
||
|
COPY headers_params /etc/nginx/conf/headers_params
|
||
|
COPY proxy_params /etc/nginx/conf/proxy_params
|
||
|
|
||
|
RUN chmod +x /usr/local/bin/*
|
||
|
|
||
|
EXPOSE 8000 4430
|
||
|
|
||
|
VOLUME /sites-enabled /www /conf.d /passwds /certs /var/log/nginx
|
||
|
|
||
|
LABEL description="nginx built from source." \
|
||
|
openssl="LibreSSL ${LIBRESSL_VERSION}." \
|
||
|
nginx="nginx ${NGINX_VERSION}."
|
||
|
|
||
|
CMD ["run.sh"]
|