website (pr-10-head)
Installation
docker pull git.newpipe-ev.de/newpipe-ev/website:pr-10-head
sha256:8f9345d168d14eb130327832868dddc2e377d50a9dde4bfa9101d7e0b27048ff
About this package
Website of the e. V.
Image Layers
ADD file:37a76ec18f9887751cd8473744917d08b7431fc4085097bb6a09d81b41775473 in / |
CMD ["/bin/sh"] |
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com> |
ENV NGINX_VERSION=1.26.0 |
ENV PKG_RELEASE=1 |
RUN /bin/sh -c set -x && 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} " && apk add --no-cache --virtual .checksum-deps openssl && case "$apkArch" in x86_64|aarch64) 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 ;; *) 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 && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -O https://hg.nginx.org/pkg-oss/archive/73d6839714a2.tar.gz && PKGOSSCHECKSUM=\"95d513d058493d60cba5a6bb328dc3c3e75ea115cf248a64bd921159e11c6fc87d33c7f058562c584fe440a219b931d53fd66bd4c596244b54287b62979834db *73d6839714a2.tar.gz\" && if [ \"\$(openssl sha512 -r 73d6839714a2.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then echo \"pkg-oss tarball checksum verification succeeded!\"; else echo \"pkg-oss tarball checksum verification failed!\"; exit 1; fi && tar xzvf 73d6839714a2.tar.gz && cd pkg-oss-73d6839714a2 && cd alpine && make base && 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 --no-network .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && apk del --no-network .checksum-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 && 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/ && apk add --no-cache tzdata && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d # buildkit |
COPY docker-entrypoint.sh / # buildkit |
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit |
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit |
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit |
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit |
ENTRYPOINT ["/docker-entrypoint.sh"] |
EXPOSE map[80/tcp:{}] |
STOPSIGNAL SIGQUIT |
CMD ["nginx" "-g" "daemon off;"] |
ENV NJS_VERSION=0.8.4 |
ENV NJS_RELEASE=2 |
RUN /bin/sh -c 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${NJS_RELEASE} " && apk add --no-cache --virtual .checksum-deps openssl && case "$apkArch" in x86_64|aarch64) apk add -X "https://nginx.org/packages/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 pcre2-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev libedit-dev bash alpine-sdk findutils && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -O https://hg.nginx.org/pkg-oss/archive/73d6839714a2.tar.gz && PKGOSSCHECKSUM=\"95d513d058493d60cba5a6bb328dc3c3e75ea115cf248a64bd921159e11c6fc87d33c7f058562c584fe440a219b931d53fd66bd4c596244b54287b62979834db *73d6839714a2.tar.gz\" && if [ \"\$(openssl sha512 -r 73d6839714a2.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then echo \"pkg-oss tarball checksum verification succeeded!\"; else echo \"pkg-oss tarball checksum verification failed!\"; exit 1; fi && tar xzvf 73d6839714a2.tar.gz && cd pkg-oss-73d6839714a2 && cd alpine && make module-geoip module-image-filter module-njs module-xslt && 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 --no-network .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && apk del --no-network .checksum-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 && apk add --no-cache curl ca-certificates # buildkit |
COPY . /usr/share/nginx/html # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/member%20fee%20regulation%20en.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/privacy%20policy%20en.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/statute%20de.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/statute%20en.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/sepaMandateWithoutReference.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/evform.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/2023-07-13_board_protocol.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/2023-12-16_plenum_protocol.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
ADD https://cloud.newpipe-ev.de/remote.php/dav/public-files/TSIDImDtSsyqjOD/2023-12-16_board_protocol.pdf /usr/share/nginx/html/assets/documents/ # buildkit |
Labels
Key | Value |
---|---|
maintainer | NGINX Docker Maintainers <docker-maint@nginx.com> |
org.opencontainers.image.created | 2024-05-22T15:40:00.329Z |
org.opencontainers.image.description | Website of the e. V. |
org.opencontainers.image.licenses | |
org.opencontainers.image.revision | 63426aa5b18f3f43fede86db9367d88b06d6e63b |
org.opencontainers.image.source | https://git.newpipe-ev.de/NewPipe-eV/website |
org.opencontainers.image.title | website |
org.opencontainers.image.url | https://git.newpipe-ev.de/NewPipe-eV/website |
org.opencontainers.image.version | pr-10-head |
Details
2024-05-22 17:40:04 +02:00
Versions (38)
View all
Container
2
OCI / Docker
linux/amd64
35 MiB
latest
2024-10-24
main
2024-10-24
pr-23-head
2024-10-22
donate-equal-size
2024-10-22
pr-25-head
2024-10-22