Namespace
rancher
Image / Tag
mirrored-cilium-hubble-ui:v0.13.1
Content Digest
sha256:bb891a74977fd0761b23060ef9d017407f9ae4b848c4d644eae4cf21f6be3346
Details
Created

2024-06-03 14:47:37 UTC

Size

10.6 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2024-05-27T00:17:53.971Z
  • org.opencontainers.image.description
    Unprivileged NGINX Dockerfiles
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    7ebc14de7f909407a2c8221d0fafffbf3cd3c8e2
  • org.opencontainers.image.source
    https://github.com/nginxinc/docker-nginx-unprivileged
  • org.opencontainers.image.title
    docker-nginx-unprivileged
  • org.opencontainers.image.url
    https://github.com/nginxinc/docker-nginx-unprivileged
  • org.opencontainers.image.version
    1.25.5-alpine-slim

Environment
NGINX_VERSION

1.25.5

PATH

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

PKG_RELEASE

1


Layers

[#000] sha256:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 - 30.8% (3.25 MB)

[#001] sha256:c56a6fd7b6faf28e13a3e1eb561a1c0159f2ce839eed3376a42c314f42dc41f8 - 36.06% (3.81 MB)

[#002] sha256:9553d7f5ad1e40eea2385bbe63703f6f4c2ac24c99f16ead602264c052eb28c4 - 0.03% (2.73 KB)

[#003] sha256:6052b40e7a94b7655305f4f56a579542c20aa0c8a7f93467a8a3f8f19a546463 - 0.01% (629 Bytes)

[#004] sha256:479713f85b442012842c8833d88cfab3772d5a41532ae1cc9cf8bd4db0e04c4b - 0.01% (959 Bytes)

[#005] sha256:ac634bb45558d5aa3fe9b6f56ffd4afaf97a88db8dd2d7e20779588d689abae4 - 0.0% (396 Bytes)

[#006] sha256:581d1dfd5a4270fef907334cfaa47e83e4edf1e3f2ffff9c8d055cd48fd98f81 - 0.01% (1.18 KB)

[#007] sha256:e7f41c94aec9894c9cfd7052ac89c0c8583fa32cd2998a1b0af0c306f5eb27fa - 0.01% (1.37 KB)

[#008] sha256:3375741f48f5e62c70c2dd6508148b5db6b26c1d2a08d9aeda504445dbeb8ffe - 7.31% (790 KB)

[#009] sha256:a136b22ca9bca0cbcc02d1d4bd5253b2a66edc37245eb7b9d0a526ed2e64ae53 - 25.77% (2.72 MB)


History
2024-01-27 00:30:48 UTC

/bin/sh -c #(nop) ADD file:37a76ec18f9887751cd8473744917d08b7431fc4085097bb6a09d81b41775473 in /

2024-01-27 00:30:48 UTC

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

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

ENV NGINX_VERSION=1.25.5

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

ENV PKG_RELEASE=1

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

ARG UID=101

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

ARG GID=101

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

RUN |2 UID=101 GID=101 /bin/sh -c set -x && addgroup -g $GID -S nginx || true && adduser -S -D -H -u $UID -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx || true && 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 && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -O https://hg.nginx.org/pkg-oss/archive/27357d6c5453.tar.gz && PKGOSSCHECKSUM=\"a80fc5706ad8e98597478b9e041f658375d53d22f7c8004dd16354067a3d48eb4ef234830b697ddf5c45ec57b837237cc11317bcaaa5133ccbe71bce15d969b0 *27357d6c5453.tar.gz\" && if [ \"\$(openssl sha512 -r 27357d6c5453.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then echo \"pkg-oss tarball checksum verification succeeded!\"; else echo \"pkg-oss tarball checksum verification failed!\"; exit 1; fi && tar xzvf 27357d6c5453.tar.gz && cd pkg-oss-27357d6c5453 && cd alpine && make base && apk index -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 --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del --no-network .gettext && mv /tmp/envsubst /usr/local/bin/ && 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

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

RUN |2 UID=101 GID=101 /bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf && chown -R $UID:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R $UID:0 /etc/nginx && chmod -R g+w /etc/nginx # buildkit

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh / # buildkit

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/docker-entrypoint.sh"]

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{}]

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGQUIT

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

USER 101

2024-05-27 00:18:08 UTC (buildkit.dockerfile.v0)

CMD ["nginx" "-g" "daemon off;"]

2024-06-03 14:45:39 UTC (buildkit.dockerfile.v0)

USER root

2024-06-03 14:45:39 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk upgrade --no-cache # buildkit

2024-06-03 14:45:39 UTC (buildkit.dockerfile.v0)

USER 101

2024-06-03 14:47:37 UTC (buildkit.dockerfile.v0)

COPY /app/server/public /app # buildkit

Details
Created

2024-06-03 14:47:37 UTC

Size

10.5 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2024-05-27T00:17:53.971Z
  • org.opencontainers.image.description
    Unprivileged NGINX Dockerfiles
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    7ebc14de7f909407a2c8221d0fafffbf3cd3c8e2
  • org.opencontainers.image.source
    https://github.com/nginxinc/docker-nginx-unprivileged
  • org.opencontainers.image.title
    docker-nginx-unprivileged
  • org.opencontainers.image.url
    https://github.com/nginxinc/docker-nginx-unprivileged
  • org.opencontainers.image.version
    1.25.5-alpine-slim

Environment
NGINX_VERSION

1.25.5

PATH

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

PKG_RELEASE

1


Layers

[#000] sha256:bca4290a96390d7a6fc6f2f9929370d06f8dfcacba591c76e3d5c5044e7f420c - 30.54% (3.19 MB)

[#001] sha256:9183abfe044c06125134b34a79760acd2760a7cefe7db1de3cec83ee4cfa8397 - 35.66% (3.73 MB)

[#002] sha256:7f0474ab9f323497ca6d998132fd2e9a77344e6765db815b9c3f9ebdd0ca6720 - 0.03% (2.74 KB)

[#003] sha256:6052b40e7a94b7655305f4f56a579542c20aa0c8a7f93467a8a3f8f19a546463 - 0.01% (629 Bytes)

[#004] sha256:68a36f688e366da25b146caef1e63a4fff02881f8a084ebfe2cfb23d9b2d2bae - 0.01% (961 Bytes)

[#005] sha256:b4aac8e9f73359f1120fc84beb39c7547369ee7ee36a5f4f21b846dda891b80d - 0.0% (398 Bytes)

[#006] sha256:afa177a81f15fd533ae7935e00dc0378340ab54b719c9313638cdf1a7effc378 - 0.01% (1.18 KB)

[#007] sha256:9e257a3cd39d631a9acd36234e9a79e1dce68dd9dc262485d92f217dcc768b75 - 0.01% (1.37 KB)

[#008] sha256:19d209d6f22c49cd0f9c33d5671bdf0c15c8da18ebcb11554062d3dce55d7f1c - 7.72% (826 KB)

[#009] sha256:a136b22ca9bca0cbcc02d1d4bd5253b2a66edc37245eb7b9d0a526ed2e64ae53 - 26.02% (2.72 MB)


History
2024-01-26 23:44:47 UTC

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

2024-01-26 23:44:47 UTC

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

2024-05-27 00:18:30 UTC (buildkit.dockerfile.v0)

LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2024-05-27 00:18:30 UTC (buildkit.dockerfile.v0)

ENV NGINX_VERSION=1.25.5

2024-05-27 00:18:30 UTC (buildkit.dockerfile.v0)

ENV PKG_RELEASE=1

2024-05-27 00:18:30 UTC (buildkit.dockerfile.v0)

ARG UID=101

2024-05-27 00:18:30 UTC (buildkit.dockerfile.v0)

ARG GID=101

2024-05-27 00:18:30 UTC (buildkit.dockerfile.v0)

RUN |2 UID=101 GID=101 /bin/sh -c set -x && addgroup -g $GID -S nginx || true && adduser -S -D -H -u $UID -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx || true && 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 && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -O https://hg.nginx.org/pkg-oss/archive/27357d6c5453.tar.gz && PKGOSSCHECKSUM=\"a80fc5706ad8e98597478b9e041f658375d53d22f7c8004dd16354067a3d48eb4ef234830b697ddf5c45ec57b837237cc11317bcaaa5133ccbe71bce15d969b0 *27357d6c5453.tar.gz\" && if [ \"\$(openssl sha512 -r 27357d6c5453.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then echo \"pkg-oss tarball checksum verification succeeded!\"; else echo \"pkg-oss tarball checksum verification failed!\"; exit 1; fi && tar xzvf 27357d6c5453.tar.gz && cd pkg-oss-27357d6c5453 && cd alpine && make base && apk index -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 --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del --no-network .gettext && mv /tmp/envsubst /usr/local/bin/ && 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

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

RUN |2 UID=101 GID=101 /bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf && chown -R $UID:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R $UID:0 /etc/nginx && chmod -R g+w /etc/nginx # buildkit

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh / # buildkit

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/docker-entrypoint.sh"]

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{}]

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGQUIT

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

USER 101

2024-05-27 00:18:31 UTC (buildkit.dockerfile.v0)

CMD ["nginx" "-g" "daemon off;"]

2024-06-03 14:45:43 UTC (buildkit.dockerfile.v0)

USER root

2024-06-03 14:45:43 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk upgrade --no-cache # buildkit

2024-06-03 14:45:43 UTC (buildkit.dockerfile.v0)

USER 101

2024-06-03 14:47:37 UTC (buildkit.dockerfile.v0)

COPY /app/server/public /app # buildkit

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