Namespace
nginxinc
Image / Tag
nginx-s3-gateway:latest-njs-oss-20220623
Content Digest
sha256:fe2338d8352f402f6b414615755a35a6805b50abeba75645c94382cbb748ef9f
Details
Created

2022-06-23 21:59:15 UTC

Size

61.7 MB

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

Environment
NGINX_VERSION

1.23.0

NJS_VERSION

0.7.5

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:b85a868b505ffd0342a37e6a3b1c49f7c71878afe569a807e6238ef08252fcb7 - 48.5% (29.9 MB)

[#001] sha256:4c9c25b794f9480920b19e18ee88a42d3a225eb28f80c506f99a556124621f56 - 39.18% (24.2 MB)

[#002] sha256:1d8e16623b7e98bf5b7979a3237214d9c595ef5982f38d2af7cdd381a54853b1 - 0.0% (602 Bytes)

[#003] sha256:d159f65c41368ced604f9d68574129b62b0dd2b4098a02d01c52e7ee4cb87594 - 0.0% (893 Bytes)

[#004] sha256:af2ebcaf75cf507a244feb13a886b36cc268e725225ba05737a814bce5ab173d - 0.0% (666 Bytes)

[#005] sha256:4f4d5acfec6afd47b39a3b2697f809205c1d4f914c3dd65e314044c3a75c14ca - 0.0% (1.36 KB)

[#006] sha256:f3242087b6b57440b0cec0248b0f195a5ed152405968ba1e85d1cd37357568fe - 0.02% (13.1 KB)

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

[#008] sha256:c50946182c2b772be35087e28b0df52f86f5d86c1c52543b49234a24a915f1e0 - 0.0% (1.21 KB)

[#009] sha256:cba5d7c1f530b5ae84e633d4d9d73ae8002b27e4133fc2452d6ee2b3053a1aeb - 0.0% (679 Bytes)

[#010] sha256:e4325255487a0b9df254329c80af6491d09a71bc1c0fa5a06e29687a99cef1ff - 4.86% (3 MB)

[#011] sha256:9ebebbb1d4adbc08bbb9dfdc1e9239fb43ce9927fe9489e95f13f95895552523 - 7.43% (4.58 MB)


History
2022-06-23 00:20:27 UTC

/bin/sh -c #(nop) ADD file:8adbbab04d6f84cd83b5f4205b89b0acb7ecbf27a1bb2dc181d0a629479039fe in /

2022-06-23 00:20:27 UTC

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

2022-06-23 04:13:05 UTC

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

2022-06-23 04:13:57 UTC

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

2022-06-23 04:13:57 UTC

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

2022-06-23 04:13:57 UTC

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

2022-06-23 04:14:15 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/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/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-06-23 04:14:15 UTC

/bin/sh -c #(nop) COPY file:65504f71f5855ca017fb64d502ce873a31b2e0decd75297a8fb0a287f97acf92 in /

2022-06-23 04:14:16 UTC

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

2022-06-23 04:14:16 UTC

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

2022-06-23 04:14:16 UTC

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

2022-06-23 04:14:16 UTC

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

2022-06-23 04:14:16 UTC

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

2022-06-23 04:14:16 UTC

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

2022-06-23 04:14:16 UTC

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

2022-06-23 21:57:55 UTC

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

2022-06-23 21:57:56 UTC

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

2022-06-23 21:57:57 UTC

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

2022-06-23 21:57:58 UTC

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

2022-06-23 21:57:59 UTC

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

2022-06-23 21:58:01 UTC

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

2022-06-23 21:58:02 UTC

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

2022-06-23 21:58:03 UTC

/bin/sh -c #(nop) COPY file:962dc60b48f71593726eed16cbbb3123d1c5eb9ac54d5b8d947271ceab400c94 in /docker-entrypoint.d/00-check-for-required-env.sh

2022-06-23 21:58:04 UTC

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

2022-06-23 21:58:10 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-06-23 21:59:15 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