docs (ci)
Published 2023-08-19 01:18:49 +00:00 by drone
Installation
docker pull gitea.jbrumond.me/doc-utils/docs:ci
sha256:0a6d9c012a629051f48b22ae0090b277116c47d091cb7ab5ec25de9aa87a0156
Image Layers
ADD file:bc58956fa3d1aff2efb0264655d039fedfff28dc4ff19a65a235e82754ee1cfa in / |
CMD ["bash"] |
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com> |
ENV NGINX_VERSION=1.25.2 |
ENV NJS_VERSION=0.8.0 |
ENV PKG_RELEASE=1~bookworm |
/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=/usr/share/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}-${PKG_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 |
COPY file:01e75c6dd0ce317d516928a17584d111cd082840c01e58be0afc851b33adb916 in / |
COPY file:caec368f5a54f70a844a13005eb2255bed778809b3672d516e719ce2f4bce123 in /docker-entrypoint.d |
COPY file:3b1b9915b7dd898a0e32f7eb9715a35c9feab914022efff68ba990bc1ec7d169 in /docker-entrypoint.d |
COPY file:57846632accc89753f45cbc00cb9e6223d991e1d31297eec3395a7ca58eed6a6 in /docker-entrypoint.d |
COPY file:9e3b2b63db9f8fc702e2dc2bdd0943be0d990c028cddcf1c159f5556a8ba3030 in /docker-entrypoint.d |
ENTRYPOINT ["/docker-entrypoint.sh"] |
EXPOSE 80 |
STOPSIGNAL SIGQUIT |
CMD ["nginx" "-g" "daemon off;"] |
EXPOSE 80 |
COPY dir:88ff35090cd49dc7cc8de79b1a8f62850c8e06e6816fa5a36bba358837f493ec in /usr/share/nginx/html |
/bin/sh -c chmod -R +rX /usr/share/nginx/html |
COPY file:09b48ece4b938e072e423aa3964cb662a21a4a26d4e9c209cfc48145bda9012c in /etc/nginx/nginx.conf |
COPY file:45806bc82eed8be16c730a3270f21564709599a75bbfed95383b4dc5ee49a2f0 in /etc/nginx/conf.d/default.conf |
COPY file:a500f148720904ff109097fa53755fc92e31d7a6b620fac746c2cf1a51cf74e2 in /etc/nginx/mime.types |
LABEL org.opencontainers.image.created=2023-08-19T01:18:08Z |
LABEL org.opencontainers.image.revision=4b4a36b739b0a129f0576a2ca61f350c1c15dae3 |
LABEL org.opencontainers.image.source=https://gitea.jbrumond.me/doc-utils/docs.git |
LABEL org.opencontainers.image.url=https://gitea.jbrumond.me/doc-utils/docs |
Labels
Key | Value |
---|---|
maintainer | NGINX Docker Maintainers <docker-maint@nginx.com> |
org.opencontainers.image.created | 2023-08-19T01:18:08Z |
org.opencontainers.image.revision | 4b4a36b739b0a129f0576a2ca61f350c1c15dae3 |
org.opencontainers.image.source | https://gitea.jbrumond.me/doc-utils/docs.git |
org.opencontainers.image.url | https://gitea.jbrumond.me/doc-utils/docs |
Details
2023-08-19 01:18:49 +00:00
Versions (2)
View all
Container
20
OCI / Docker
linux/arm64
69 MiB