Tag
papyrus-rework-web:1.0.3-dev_25
Created
2026-05-15 13:25:53 UTC
Architecture
linux / amd64
Content Digest
Pull Command
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
ENV
  • PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  • NGINX_VERSION=1.27.5
  • PKG_RELEASE=1
  • DYNPKG_RELEASE=1
  • NJS_VERSION=0.8.10
  • NJS_RELEASE=1
Layers
  • 001 sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 3.47 MB
  • 002 sha256:61ca4f733c802afd9e05a32f0de0361b6d713b8b53292dc15fb093229f648674 1.71 MB
  • 003 sha256:b464cfdf2a6319875aeb27359ec549790ce14d8214fcb16ef915e4530e5ed235 629 Bytes
  • 004 sha256:d7e5070240863957ebb0b5a44a5729963c3462666baa2947d00628cb5f2d5773 955 Bytes
  • 005 sha256:81bd8ed7ec6789b0cb7f1b47ee731c522f6dba83201ec73cd6bca1350f582948 402 Bytes
  • 006 sha256:197eb75867ef4fcecd4724f17b0972ab0489436860a594a9445f8eaff8155053 1.18 KB
  • 007 sha256:34a64644b756511a2e217f0508e11d1a572085d66cd6dc9a555a082ad49a3102 1.36 KB
  • 008 sha256:39c2ddfd6010082a4a646e7ca44e95aca9bf3eaebc00f17f7ccc2954004f2a7d 14.8 MB
  • 009 sha256:e5979d14ec0b804f115f6bc347407da6f65ea42a5db300862d0174ea49213442 45.9 KB
  • 010 sha256:e4cecf205381bfe5a35f566eb171d8636ea8a98c5e3476657417d94900419468 870 Bytes
  • 011 sha256:11824bbef4d22c9d22cd87e708b2bbf3fdc3f7cb4cff0e782c8fd0cf2a620d7b 5.12 MB
  • 012 sha256:677564c0708a8979c2387c57e82f56f6607ae2331e927d362c780e64cea9f56c 646 KB
History
[2025-02-14 03:28:36 UTC] ADD alpine-minirootfs-3.21.3-x86_64.tar.gz / # buildkit [2025-02-14 03:28:36 UTC] CMD ["/bin/sh"] [2025-04-16 14:50:31 UTC] LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com> [2025-04-16 14:50:31 UTC] ENV NGINX_VERSION=1.27.5 [2025-04-16 14:50:31 UTC] ENV PKG_RELEASE=1 [2025-04-16 14:50:31 UTC] ENV DYNPKG_RELEASE=1 [2025-04-16 14:50:31 UTC] 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/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 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=\"c773d98b567bd585c17f55702bf3e4c7d82b676bfbde395270e90a704dca3c758dfe0380b3f01770542b4fd9bed1f1149af4ce28bfc54a27a96df6b700ac1745 *${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 && 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 gettext-envsubst && 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 [2025-04-16 14:50:31 UTC] COPY docker-entrypoint.sh / # buildkit [2025-04-16 14:50:31 UTC] COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit [2025-04-16 14:50:31 UTC] COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit [2025-04-16 14:50:31 UTC] COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit [2025-04-16 14:50:31 UTC] COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit [2025-04-16 14:50:31 UTC] ENTRYPOINT ["/docker-entrypoint.sh"] [2025-04-16 14:50:31 UTC] EXPOSE map[80/tcp:{}] [2025-04-16 14:50:31 UTC] STOPSIGNAL SIGQUIT [2025-04-16 14:50:31 UTC] CMD ["nginx" "-g" "daemon off;"] [2025-04-16 14:50:31 UTC] ENV NJS_VERSION=0.8.10 [2025-04-16 14:50:31 UTC] ENV NJS_RELEASE=1 [2025-04-16 14:50:31 UTC] RUN /bin/sh -c set -x && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_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/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 pcre2-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev libedit-dev 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=\"c773d98b567bd585c17f55702bf3e4c7d82b676bfbde395270e90a704dca3c758dfe0380b3f01770542b4fd9bed1f1149af4ce28bfc54a27a96df6b700ac1745 *${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 module-geoip module-image-filter module-njs module-xslt && 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 && 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 [2026-05-15 12:39:12 UTC] RUN /bin/sh -c apk add --no-cache curl # buildkit [2026-05-15 12:39:12 UTC] COPY traefik/web.nginx.conf /etc/nginx/conf.d/default.conf # buildkit [2026-05-15 13:25:53 UTC] COPY /app/dist /srv/public/pos # buildkit [2026-05-15 13:25:53 UTC] COPY /app/dist/dashboard /srv/public/dashboard # buildkit [2026-05-15 13:25:53 UTC] HEALTHCHECK &{["CMD-SHELL" "curl --fail http://127.0.0.1 || exit 1"] "10s" "3s" "0s" '\x00'}