124 lines
5.3 KiB
Docker
124 lines
5.3 KiB
Docker
#
|
|
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
|
|
#
|
|
# PLEASE DO NOT EDIT IT DIRECTLY.
|
|
#
|
|
FROM alpine:3.20
|
|
|
|
LABEL maintainer="NGINX Docker Maintainers <docker-maint@nginx.com>"
|
|
|
|
ENV NGINX_VERSION 1.26.3
|
|
ENV PKG_RELEASE 1
|
|
ENV DYNPKG_RELEASE 2
|
|
|
|
RUN set -x \
|
|
# create nginx user/group first, to be consistent throughout docker variants
|
|
&& addgroup -g 101 -S nginx \
|
|
&& adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx \
|
|
&& apkArch="$(cat /etc/apk/arch)" \
|
|
&& nginxPackages=" \
|
|
nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
|
|
" \
|
|
# install prerequisites for public key and pkg-oss checks
|
|
&& apk add --no-cache --virtual .checksum-deps \
|
|
openssl \
|
|
&& case "$apkArch" in \
|
|
x86_64|aarch64) \
|
|
# arches officially built by upstream
|
|
set -x \
|
|
&& KEY_SHA512="e09fa32f0a0eab2b879ccbbc4d0e4fb9751486eedda75e35fac65802cc9faa266425edf83e261137a2f4d16281ce2c1a5f4502930fe75154723da014214f0655" \
|
|
&& wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub \
|
|
&& if echo "$KEY_SHA512 */tmp/nginx_signing.rsa.pub" | sha512sum -c -; then \
|
|
echo "key verification succeeded!"; \
|
|
mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; \
|
|
else \
|
|
echo "key verification failed!"; \
|
|
exit 1; \
|
|
fi \
|
|
&& apk add -X "https://nginx.org/packages/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages \
|
|
;; \
|
|
*) \
|
|
# we're on an architecture upstream doesn't officially build for
|
|
# let's build binaries from the published packaging sources
|
|
set -x \
|
|
&& tempDir="$(mktemp -d)" \
|
|
&& chown nobody:nobody $tempDir \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
gcc \
|
|
libc-dev \
|
|
make \
|
|
openssl-dev \
|
|
pcre2-dev \
|
|
zlib-dev \
|
|
linux-headers \
|
|
bash \
|
|
alpine-sdk \
|
|
findutils \
|
|
curl \
|
|
&& su nobody -s /bin/sh -c " \
|
|
export HOME=${tempDir} \
|
|
&& cd ${tempDir} \
|
|
&& curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
|
|
&& PKGOSSCHECKSUM=\"3a4e869eded0c71e92f522e94edffea7fbfb5e78886ea7e484342fa2e028c62099a67d08860c249bf93776da97b924225e0d849dbb4697b298afe5421d7d6fea *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
|
|
&& if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then \
|
|
echo \"pkg-oss tarball checksum verification succeeded!\"; \
|
|
else \
|
|
echo \"pkg-oss tarball checksum verification failed!\"; \
|
|
exit 1; \
|
|
fi \
|
|
&& tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
|
|
&& cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE} \
|
|
&& cd alpine \
|
|
&& make base \
|
|
&& apk index --allow-untrusted -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 --no-network .build-deps \
|
|
&& apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages \
|
|
;; \
|
|
esac \
|
|
# remove checksum deps
|
|
&& apk del --no-network .checksum-deps \
|
|
# if we have leftovers from building, let's purge them (including extra, unnecessary build deps)
|
|
&& if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi \
|
|
&& if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi \
|
|
# Bring in gettext so we can get `envsubst`, then throw
|
|
# the rest away. To do this, we need to install `gettext`
|
|
# then move `envsubst` out of the way so `gettext` can
|
|
# be deleted completely, then move `envsubst` back.
|
|
&& 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 --no-network .gettext \
|
|
&& mv /tmp/envsubst /usr/local/bin/ \
|
|
# Bring in tzdata so users could set the timezones through the environment
|
|
# variables
|
|
&& apk add --no-cache tzdata \
|
|
# forward request and error logs to docker log collector
|
|
&& ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log \
|
|
# create a docker-entrypoint.d directory
|
|
&& mkdir /docker-entrypoint.d
|
|
|
|
COPY docker-entrypoint.sh /
|
|
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d
|
|
COPY 15-local-resolvers.envsh /docker-entrypoint.d
|
|
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d
|
|
COPY 30-tune-worker-processes.sh /docker-entrypoint.d
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
|
|
EXPOSE 80
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|