Tag

gasmado/frontend:47
Content Digest: sha256:095ec4ebd5354e50e4caad465dba684e1ee6acd955a2037bc2ea4e60a8cbb860
Manifests
Details
Content Digest

sha256:913be2cb8a102ae56e6703db50ecd8dcfd2a9b1464db9f0b7642fa571f635de1

Created

2022-07-02 09:06:15 UTC

Size

9.9 MB


Labels
  • com.visualstudio.meikellp.image.build.buildnumber
    20220702.4
  • com.visualstudio.meikellp.image.build.builduri
    vstfs:///Build/Build/47
  • com.visualstudio.meikellp.image.build.definitionname
    Gasmado
  • com.visualstudio.meikellp.image.build.repository.name
    Gasmado
  • com.visualstudio.meikellp.image.build.repository.uri
    https://meikellp.visualstudio.com/Gasmado/_git/Gasmado
  • com.visualstudio.meikellp.image.build.sourcebranchname
    azure-pipelines
  • com.visualstudio.meikellp.image.build.sourceversion
    021ed0cd42890df63f7a804868c12aa91b444a5a
  • com.visualstudio.meikellp.image.system.teamfoundationcollectionuri
    https://meikellp.visualstudio.com/
  • com.visualstudio.meikellp.image.system.teamproject
    Gasmado
  • image.base.digest
    sha256:0a88a14a264f46562e2d1f318fbf0606bc87e72727528b51613a5e96f483a0f6
  • image.base.ref.name
    nginx:1.22.0-alpine
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.22.0

NJS_VERSION

0.7.5

PATH

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

PKG_RELEASE

1


Layers

[#000] sha256:2408cc74d12b6cd092bb8b516ba7d5e290f485d3eb9672efc00f0583730179e8 - 26.97% (2.67 MB)

[#001] sha256:d803b651eb66cd2f6b4e768a27f06b5115020e718fa48d8b9d7c111428a39dfe - 71.06% (7.03 MB)

[#002] sha256:506a8a07806b68fceded1e745f91621cde12fd9e6f3d43da51679249a46ca5bf - 0.01% (602 Bytes)

[#003] sha256:90950720101a3473a4f622d73637b3462980acf5c1eb611c1bf014056f37c112 - 0.01% (893 Bytes)

[#004] sha256:f624b86dc08299257d3d87fa74cc080cf8ff53c6308e06f043d10ef1bb2bf217 - 0.01% (666 Bytes)

[#005] sha256:735bfeb5dcedfc40d8d7e3dfeb31cbf7ea8fe9b59daeddd09b090b25d73e76f9 - 0.01% (1.36 KB)

[#006] sha256:00f098e5ed401129f97b09e15427864fa5f417818a462ec9902a62a50f5337db - 0.0% (92 Bytes)

[#007] sha256:cfabd982a28fe797f4cb469c349fbeed667489859d24be72d3b8419a4b779d88 - 1.94% (196 KB)

[#008] sha256:918f5cd769c56b5712a8173ea83e8e9e4f46e57f0f2bda0916f80231ed5d9703 - 0.0% (303 Bytes)

[#009] sha256:07a3688f509109fb527b0c503b7da1186aac22fb32d7d5e38656e9771ca706cb - 0.0% (264 Bytes)


History
2022-05-23 19:19:30 UTC

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

2022-05-23 19:19:31 UTC

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

2022-05-25 18:39:40 UTC

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

2022-05-25 18:39:40 UTC

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

2022-06-22 19:22:01 UTC

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

2022-06-22 19:22:01 UTC

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

2022-06-22 19:22:09 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} " && apk add --no-cache --virtual .checksum-deps openssl && case "$apkArch" in x86_64|aarch64) set -x && KEY_SHA512="e7fa8303923d9b95db37a77ad46c68fd4755ff935d0a534d26eba83de193c76166c68bfe7f65471bf8881004ef4aa6df3e34689c305662750c0172fca5d8552a *stdin" && 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 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 pcre2-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev 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/714.tar.gz && PKGOSSCHECKSUM=\"f457d5988c1f2663e04c5cdad71874c25e94754277dd9da5d73c1d37c32bdaf288b3b20d8b5d070ffb33aab363eaf4a7abbcf95fcfd72b0729a1c1908c37e30e *714.tar.gz\" && if [ \"\$(openssl sha512 -r 714.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then echo \"pkg-oss tarball checksum verification succeeded!\"; else echo \"pkg-oss tarball checksum verification failed!\"; exit 1; fi && tar xzvf 714.tar.gz && cd pkg-oss-714 && 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 && apk del .checksum-deps && 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

2022-06-22 19:22:09 UTC

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

2022-06-22 19:22:09 UTC

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

2022-06-22 19:22:10 UTC

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

2022-06-22 19:22:10 UTC

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

2022-06-22 19:22:10 UTC

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

2022-06-22 19:22:10 UTC

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

2022-06-22 19:22:10 UTC

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

2022-06-22 19:22:10 UTC

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

2022-07-02 09:05:58 UTC

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

2022-07-02 09:06:00 UTC

/bin/sh -c #(nop) COPY dir:ab1f716372a79f93eaf344648662b796f9abf20b43dbe6710d62e1aa851ba78f in /usr/share/nginx/html

2022-07-02 09:06:01 UTC

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

2022-07-02 09:06:02 UTC

/bin/sh -c #(nop) COPY file:d836c7026e5e60deae8dbfb0b4756b766404b5a4c0602aec72087541d8d6f72f in /app/startup.sh

2022-07-02 09:06:02 UTC

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

2022-07-02 09:06:03 UTC

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

2022-07-02 09:06:04 UTC

/bin/sh -c #(nop) ENTRYPOINT ["sh" "/app/startup.sh"]

2022-07-02 09:06:05 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.build.buildnumber=20220702.4

2022-07-02 09:06:06 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.build.builduri=vstfs:///Build/Build/47

2022-07-02 09:06:07 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.build.definitionname=Gasmado

2022-07-02 09:06:08 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.build.repository.name=Gasmado

2022-07-02 09:06:09 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.build.repository.uri=https://meikellp.visualstudio.com/Gasmado/_git/Gasmado

2022-07-02 09:06:10 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.build.sourcebranchname=azure-pipelines

2022-07-02 09:06:11 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.build.sourceversion=021ed0cd42890df63f7a804868c12aa91b444a5a

2022-07-02 09:06:12 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.system.teamfoundationcollectionuri=https://meikellp.visualstudio.com/

2022-07-02 09:06:13 UTC

/bin/sh -c #(nop) LABEL com.visualstudio.meikellp.image.system.teamproject=Gasmado

2022-07-02 09:06:14 UTC

/bin/sh -c #(nop) LABEL image.base.digest=sha256:0a88a14a264f46562e2d1f318fbf0606bc87e72727528b51613a5e96f483a0f6

2022-07-02 09:06:15 UTC

/bin/sh -c #(nop) LABEL image.base.ref.name=nginx:1.22.0-alpine