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.0
-
NJS_VERSION=0.8.4
-
NJS_RELEASE=2~bookworm
-
PKG_RELEASE=2~bookworm
Layers
-
001
sha256:09f376ebb190216b0459f470e71bec7b5dfa611d66bf008492b40dcc5f1d8eae
27.8 MB
-
002
sha256:5529e0792248c08c2352ae43a116a81867dcf661b77e422c99e3e14a7c9d4fa2
39.9 MB
-
003
sha256:9b3addd3eb3dbfb5b3d69303cd4aae75af5164f17e5d0319555c792af67536f9
628 Bytes
-
004
sha256:57910a8c431625fa6695de9a283b99d7b854c979b750c85c51ab6e987c602125
959 Bytes
-
005
sha256:7b5f78f214490830815a00b45e379db71d68f862ca8e8d523405188e5d253694
397 Bytes
-
006
sha256:b7923aa4e8a627b32d375c4f9a44c40f91a79acf706b7b0adaf4f0fc993ba8f5
1.18 KB
-
007
sha256:785625911f125e287a8a7b28a70c09a0229405ad28bfa837e1e25f06c967cc68
1.37 KB
-
008
sha256:f6f1b9469f7953a405ac5bc7964f227afb262d7108572b1ed8d0c14c5d4c8c4d
1.19 MB
-
009
sha256:5d52b4d81f4e289e20ff46fd1ab7db1882589759a788b649a026080d16b94c2b
630 Bytes
-
010
sha256:d27a0305a5124bc4da9bd3a82670a58c77642ea2b4cfa481b03909340da9f7d3
298 Bytes
History
[2024-05-14 01:28:03 UTC] /bin/sh -c #(nop) ADD file:5aaace706aa00ff97d243daa2c29f5de88f124e1b97c570634f16eef90783286 in /
[2024-05-14 01:28:04 UTC] /bin/sh -c #(nop) CMD ["bash"]
[2024-05-29 23:55:01 UTC] LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
[2024-05-29 23:55:01 UTC] ENV NGINX_VERSION=1.27.0
[2024-05-29 23:55:01 UTC] ENV NJS_VERSION=0.8.4
[2024-05-29 23:55:01 UTC] ENV NJS_RELEASE=2~bookworm
[2024-05-29 23:55:01 UTC] ENV PKG_RELEASE=2~bookworm
[2024-05-29 23:55:01 UTC] RUN /bin/sh -c set -x && groupadd --system --gid 101 nginx && useradd --system --gid nginx --no-create-home --home /nonexistent --comment "nginx user" --shell /bin/false --uid 101 nginx && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; NGINX_GPGKEY_PATH=/etc/apt/keyrings/nginx-archive-keyring.gpg; export GNUPGHOME="$(mktemp -d)"; found=''; for server in hkp://keyserver.ubuntu.com:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; gpg1 --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; gpg1 --export "$NGINX_GPGKEY" > "$NGINX_GPGKEY_PATH" ; rm -rf "$GNUPGHOME"; apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* && dpkgArch="$(dpkg --print-architecture)" && nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} " && case "$dpkgArch" in amd64|arm64) echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/mainline/debian/ bookworm nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/mainline/debian/ bookworm nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && ls -lAFh "$tempDir" && ( cd "$tempDir" && dpkg-scanpackages . > Packages ) && grep '^Package: ' "$tempDir/Packages" && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list && apt-get -o Acquire::GzipIndexes=false update ;; esac && apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base curl && apt-get remove --purge --auto-remove -y && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list && if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d # buildkit
[2024-05-29 23:55:01 UTC] COPY docker-entrypoint.sh / # buildkit
[2024-05-29 23:55:01 UTC] COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
[2024-05-29 23:55:01 UTC] COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
[2024-05-29 23:55:01 UTC] COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
[2024-05-29 23:55:01 UTC] COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
[2024-05-29 23:55:01 UTC] ENTRYPOINT ["/docker-entrypoint.sh"]
[2024-05-29 23:55:01 UTC] EXPOSE map[80/tcp:{}]
[2024-05-29 23:55:01 UTC] STOPSIGNAL SIGQUIT
[2024-05-29 23:55:01 UTC] CMD ["nginx" "-g" "daemon off;"]
[2024-06-13 15:05:47 UTC] /bin/sh -c #(nop) COPY dir:59db5c60910007e1ec2dcb5c238fbdfd7b8de2fa5ca017aa4c301675a292bad1 in /usr/share/nginx/html
[2024-06-13 15:05:47 UTC] /bin/sh -c #(nop) COPY file:24cf1b2d54cc4fedd2a546124ceba4cfb4e98bcb071d5eddb4f1a1e05c632bf2 in /etc/nginx/conf.d/
[2024-06-13 15:05:48 UTC] /bin/sh -c envsubst < /usr/share/nginx/html/assets/env.template.js > /usr/share/nginx/html/assets/env.js
[2024-06-13 15:05:48 UTC] /bin/sh -c #(nop) EXPOSE 4200