| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #! /usr/bin/env sh
- # From official Nginx Docker image, as a script to re-use it, removing internal comments
- # Standard set up Nginx Alpine
- # https://github.com/nginxinc/docker-nginx/blob/594ce7a8bc26c85af88495ac94d5cd0096b306f7/mainline/alpine/Dockerfile
- export NGINX_VERSION=1.17.10
- export NJS_VERSION=0.3.9
- export PKG_RELEASE=1
- set -x \
- && apkArch="$(cat /etc/apk/arch)" \
- && nginxPackages=" \
- nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
- nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE} \
- nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE} \
- nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE} \
- nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${PKG_RELEASE} \
- " \
- && case "$apkArch" in \
- x86_64) \
- set -x \
- && KEY_SHA512="e7fa8303923d9b95db37a77ad46c68fd4755ff935d0a534d26eba83de193c76166c68bfe7f65471bf8881004ef4aa6df3e34689c305662750c0172fca5d8552a *stdin" \
- && apk add --no-cache --virtual .cert-deps \
- openssl \
- && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub \
- && if [ "$(openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -text -noout | openssl sha512 -r)" = "$KEY_SHA512" ]; then \
- echo "key verification succeeded!"; \
- mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; \
- else \
- echo "key verification failed!"; \
- exit 1; \
- fi \
- && apk del .cert-deps \
- && apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages \
- ;; \
- *) \
- set -x \
- && tempDir="$(mktemp -d)" \
- && chown nobody:nobody $tempDir \
- && apk add --no-cache --virtual .build-deps \
- gcc \
- libc-dev \
- make \
- openssl-dev \
- pcre-dev \
- zlib-dev \
- linux-headers \
- libxslt-dev \
- gd-dev \
- geoip-dev \
- perl-dev \
- libedit-dev \
- mercurial \
- bash \
- alpine-sdk \
- findutils \
- && su nobody -s /bin/sh -c " \
- export HOME=${tempDir} \
- && cd ${tempDir} \
- && hg clone https://hg.nginx.org/pkg-oss \
- && cd pkg-oss \
- && hg up ${NGINX_VERSION}-${PKG_RELEASE} \
- && cd alpine \
- && make all \
- && apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk \
- && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz \
- " \
- && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ \
- && apk del .build-deps \
- && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages \
- ;; \
- esac \
- && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi \
- && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi \
- && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi \
- && apk add --no-cache --virtual .gettext gettext \
- && mv /usr/bin/envsubst /tmp/ \
- \
- && runDeps="$( \
- scanelf --needed --nobanner /tmp/envsubst \
- | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
- | sort -u \
- | xargs -r apk info --installed \
- | sort -u \
- )" \
- && apk add --no-cache $runDeps \
- && apk del .gettext \
- && mv /tmp/envsubst /usr/local/bin/ \
- && apk add --no-cache tzdata \
- && ln -sf /dev/stdout /var/log/nginx/access.log \
- && ln -sf /dev/stderr /var/log/nginx/error.log
- # Standard set up Nginx finished
|