Namespace
nginxinc
Image / Tag
nginx-s3-gateway:latest-njs-oss-20221102
Content Digest
sha256:9507af6e6ba33dcdd299778c17090f63f8bc3504001bb12c0104cdf981329646
Details
Created

2022-11-02 19:57:41 UTC

Size

60.9 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.23.2

NJS_VERSION

0.7.8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1~bullseye

PROXY_CACHE_VALID_FORBIDDEN

30s

PROXY_CACHE_VALID_NOTFOUND

1m

PROXY_CACHE_VALID_OK

1h


Layers

[#000] sha256:e9995326b091af7b3ce352fad4d76cf3a3cb62b7a0c35cc5f625e8e649d23c50 - 49.2% (30 MB)

[#001] sha256:71689475aec267fae8891b2b3d2bef78c6b3d57c077129ff9cd69b6e5253dfa7 - 39.78% (24.2 MB)

[#002] sha256:f88a23025338bc64e97dc350efac90275df227949d7c835b8b1f6fbc4d2439c0 - 0.0% (627 Bytes)

[#003] sha256:0df440342e265c89de536643c3376dadf44c810fe2fb2b2ee44711f8661ce531 - 0.0% (959 Bytes)

[#004] sha256:eef26ceb3309d6e72a4402c3f16b047416adecaf91bc5360ebd4205d1ef5e310 - 0.0% (774 Bytes)

[#005] sha256:8e3ed6a9e43aaf17bc2175fa2c7ae2ee24cff4d32bf82adf1ea689db4dcf15e1 - 0.0% (1.37 KB)

[#006] sha256:e4e03250821a12a483cf6120aea5e1a94fb10fcb6b120ef1970a16bd012bef8a - 0.02% (14.9 KB)

[#007] sha256:66540d6dcc99935f49ff790d0a5bdb853f1ba8dd6e33d97dfef19903f18bd2e7 - 0.0% (1.04 KB)

[#008] sha256:3f623dc77b3b27b84a28cc27551011c36218f239224e9917e159c685b0d0b1c9 - 0.0% (1.6 KB)

[#009] sha256:ef55add6baddf4a0760a2e268966cd465f77310f18ae247c9332109dadd67ff1 - 0.0% (677 Bytes)

[#010] sha256:302839eca9f8e6e5ff0b6a4a762708a22e4b8ad84a5e909a8bcf1c3319819ed8 - 2.95% (1.8 MB)

[#011] sha256:3d798eac7694977d69e57cd81bf350b36d67b8a8e727e4e0401fc57456edaa00 - 8.04% (4.9 MB)


History
2022-10-25 01:43:53 UTC

/bin/sh -c #(nop) ADD file:8644a8156a07a656a35c41e2b2a458befb660309f8592e3efd5b43d46156cec2 in /

2022-10-25 01:43:53 UTC

/bin/sh -c #(nop) CMD ["bash"]

2022-10-25 10:22:45 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2022-10-25 10:22:45 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.23.2

2022-10-25 10:22:45 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.7.7

2022-10-25 10:22:45 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1~bullseye

2022-10-25 10:23:07 UTC

/bin/sh -c set -x && addgroup --system --gid 101 nginx && adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "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; found=''; for server in hkp://keyserver.ubuntu.com:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --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; 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 https://nginx.org/packages/mainline/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/debian/ bullseye 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

2022-10-25 10:23:07 UTC

/bin/sh -c #(nop) COPY file:7b307b62e82255f040c9812421a30090bf9abf3685f27b02d77fcca99f997911 in /

2022-10-25 10:23:07 UTC

/bin/sh -c #(nop) COPY file:5c18272734349488bd0c94ec8d382c872c1a0a435cca13bd4671353d6021d2cb in /docker-entrypoint.d

2022-10-25 10:23:08 UTC

/bin/sh -c #(nop) COPY file:abbcbf84dc17ee4454b6b2e3cf914be88e02cf84d344ec45a5b31235379d722a in /docker-entrypoint.d

2022-10-25 10:23:08 UTC

/bin/sh -c #(nop) COPY file:e57eef017a414ca793499729d80a7b9075790c9a804f930f1417e56d506970cf in /docker-entrypoint.d

2022-10-25 10:23:08 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2022-10-25 10:23:08 UTC

/bin/sh -c #(nop) EXPOSE 80

2022-10-25 10:23:08 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGQUIT

2022-10-25 10:23:08 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

2022-11-02 19:56:06 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.23.2

2022-11-02 19:56:07 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.7.8

2022-11-02 19:56:08 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_VALID_OK=1h

2022-11-02 19:56:09 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_VALID_NOTFOUND=1m

2022-11-02 19:56:10 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_VALID_FORBIDDEN=30s

2022-11-02 19:56:12 UTC

/bin/sh -c #(nop) COPY dir:7e7b94fb189e251672520877122e407dc89321de54a5171a070f8062c80b5f65 in /etc

2022-11-02 19:56:13 UTC

/bin/sh -c #(nop) COPY file:6f969f887849c3d4598fb04728ceb9d6e7c6ddc3f858a4b801d9c0a8df42b0d5 in /docker-entrypoint.sh

2022-11-02 19:56:14 UTC

/bin/sh -c #(nop) COPY dir:a7b0dc522845cdbc8f1dece929facd3bbe25909dd3d88fecbdf3b67c3caaf9f5 in /docker-entrypoint.d/

2022-11-02 19:56:15 UTC

/bin/sh -c #(nop) COPY dir:6d3191e2b57abf053153f60e15b11554008955dfecbecfaece0d457f0d261639 in /etc

2022-11-02 19:56:20 UTC

/bin/sh -c set -eux export DEBIAN_FRONTEND=noninteractive; mkdir -p /var/cache/nginx/s3_proxy; chown nginx:nginx /var/cache/nginx/s3_proxy; chmod -R -v +x /docker-entrypoint.sh /docker-entrypoint.d/*.sh; echo "deb https://nginx.org/packages/mainline/debian/ $(echo $PKG_RELEASE | cut -f2 -d~) nginx" >> /etc/apt/sources.list.d/nginx.list; apt-get update; apt-get install --no-install-recommends --no-install-suggests --yes nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE}; apt-get remove --purge --auto-remove --yes; rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list

2022-11-02 19:57:41 UTC

/bin/sh -c set -eux export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install --no-install-recommends --no-install-suggests --yes make gcc libc6-dev curl expect libpcre2-dev libpcre3-dev libedit-dev libreadline-dev libssl-dev libpcre2-posix2; mkdir -p /tmp/nginx /tmp/njs-latest; curl --retry 6 --location "https://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz" | gunzip | tar --extract --strip-components=1 --directory /tmp/nginx; curl --retry 6 --location 'https://hg.nginx.org/njs/archive/tip.tar.gz' | gunzip | tar --extract --strip-components=1 --directory /tmp/njs-latest; cd /tmp/njs-latest; ./configure; make -j "$(nproc)"; cp build/njs /usr/bin/njs; cd /tmp/nginx; ./configure --add-dynamic-module=/tmp/njs-latest/nginx --without-http_gzip_module --without-http_rewrite_module --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-stream --with-mail --with-threads --with-compat --with-cc-opt="-g -O2 -fdebug-prefix-map=/data/builder/debuild/nginx-${NGINX_VERSION}/debian/debuild-base/nginx-${NGINX_VERSION}=. -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC"; make -j "$(nproc)"; cp objs/ngx_stream_js_module.so /usr/lib/nginx/modules; cp objs/ngx_http_js_module.so /usr/lib/nginx/modules; apt-get purge --yes --auto-remove make gcc libc6-dev expect libpcre2-dev libpcre3-dev libedit-dev libreadline-dev libssl-dev; rm -rf /var/lib/apt/lists/* /tmp/*

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete