Namespace
longhornio
Image / Tag
longhorn-ui:snyk-upgrade-828a06246dd07cfd96a8999fda520a2b-head-arm64
Content Digest
sha256:15e1b8a5cd62bb917895fa5b3ceb062d9777977eb8e41dca672db61d43c84c30
Details
Created

2021-12-15 20:57:13 UTC

Size

15.6 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2021-12-15T20:46:34Z
  • org.opencontainers.image.revision
    877313a7165d2f0f1e02e1cec44387bda5be4c2f
  • org.opencontainers.image.source
    https://github.com/longhorn/longhorn-ui.git
  • org.opencontainers.image.url
    https://github.com/longhorn/longhorn-ui

Environment
LONGHORN_MANAGER_IP

http://localhost:9500

NGINX_VERSION

1.20.1

NJS_VERSION

0.5.3

PATH

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

PKG_RELEASE

1


Layers

[#000] sha256:06decbbdea2401b400024fb2feadd51ee381cd4b7b78a30306c3828ec9f6c760 - 16.61% (2.59 MB)

[#001] sha256:6fa63658bb6dd87ce45f1f582b8bc7798f75fa542961a2be0d5eb87db29917cf - 42.56% (6.65 MB)

[#002] sha256:a05979332f081d7b46ce1a5475f3603d2e491268084f343585d9bb57fd93794c - 0.0% (603 Bytes)

[#003] sha256:a4b938d802f5395383cab288c426e434f6eb5c36e8f45161ce3c84c1b4bbbde9 - 0.01% (894 Bytes)

[#004] sha256:a2150379314cfe2597e82b518db38a22a8e454290d85d389430d7eee36fce9f7 - 0.0% (665 Bytes)

[#005] sha256:741120d59fa7305b322cf921e8f6835a68cc5501e00fdb29537440747140a99c - 0.01% (1.36 KB)

[#006] sha256:746d1e1fa1d87cddd9c79c4e3dba489128ad0f8d6c3cbed86cf65525da51274d - 18.67% (2.92 MB)

[#007] sha256:62e311a561fb3c7aeb0743ab77e941bed1b8c0ec160a81ffe83ad762b04d035a - 0.0% (143 Bytes)

[#008] sha256:f2d29d274d8054fb253d64a2bd21a8fab4dfb09500fdabf3c7cc05c663c53485 - 22.14% (3.46 MB)

[#009] sha256:e063fc268bc2f78c6d26b5cf19470f65c60dce1e038a85d022eea7c3ef15c646 - 0.0% (818 Bytes)


History
2021-11-12 16:40:05 UTC

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

2021-11-12 16:40:06 UTC

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

2021-11-12 17:32:28 UTC

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

2021-11-12 17:32:29 UTC

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

2021-11-12 17:32:30 UTC

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

2021-11-12 17:32:31 UTC

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

2021-11-12 17:32:39 UTC

/bin/sh -c set -x && addgroup -g 101 -S nginx && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${PKG_RELEASE} " && case "$apkArch" in x86_64|aarch64) set -x && KEY_SHA512="e7fa8303923d9b95db37a77ad46c68fd4755ff935d0a534d26eba83de193c76166c68bfe7f65471bf8881004ef4aa6df3e34689c305662750c0172fca5d8552a *stdin" && apk add --no-cache --virtual .cert-deps openssl && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub && if [ "$(openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -text -noout | openssl sha512 -r)" = "$KEY_SHA512" ]; then echo "key verification succeeded!"; mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; else echo "key verification failed!"; exit 1; fi && apk del .cert-deps && apk add -X "https://nginx.org/packages/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 pcre-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev mercurial bash alpine-sdk findutils && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && hg clone https://hg.nginx.org/pkg-oss && cd pkg-oss && hg up ${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make all && 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 .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.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 .gettext && mv /tmp/envsubst /usr/local/bin/ && apk add --no-cache tzdata && apk add --no-cache curl ca-certificates && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2021-11-12 17:32:41 UTC

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

2021-11-12 17:32:42 UTC

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

2021-11-12 17:32:43 UTC

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

2021-11-12 17:32:44 UTC

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

2021-11-12 17:32:44 UTC

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

2021-11-12 17:32:45 UTC

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

2021-11-12 17:32:46 UTC

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

2021-11-12 17:32:47 UTC

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

2021-12-15 20:57:06 UTC

/bin/sh -c apk update && apk upgrade && apk add curl && apk add bash && apk add gettext && apk add shadow && rm -rf /var/cache/apk/*

2021-12-15 20:57:09 UTC

/bin/sh -c mkdir -p web/dist

2021-12-15 20:57:09 UTC

/bin/sh -c #(nop) WORKDIR /web

2021-12-15 20:57:10 UTC

/bin/sh -c #(nop) COPY dir:b8e1b10c509fa48ed83d8147cc7949ae5d2a1b2bdbdb1da13cc2e69d4582d6f0 in /web/dist

2021-12-15 20:57:11 UTC

/bin/sh -c #(nop) COPY file:ee240c8f151e69b4da486d486e00a372e41f78a7567e8a3570f27b1f097c35d7 in /etc/nginx/nginx.conf.template

2021-12-15 20:57:11 UTC

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

2021-12-15 20:57:12 UTC

/bin/sh -c #(nop) ENV LONGHORN_MANAGER_IP=http://localhost:9500

2021-12-15 20:57:12 UTC

/bin/sh -c #(nop) CMD ["/bin/bash" "-c" "envsubst '${LONGHORN_MANAGER_IP}' < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf && nginx -g 'daemon off;'"]

2021-12-15 20:57:12 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-12-15T20:46:34Z

2021-12-15 20:57:13 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.revision=877313a7165d2f0f1e02e1cec44387bda5be4c2f

2021-12-15 20:57:13 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.source=https://github.com/longhorn/longhorn-ui.git

2021-12-15 20:57:13 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.url=https://github.com/longhorn/longhorn-ui

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