2020-11-19 23:36:44 UTC
29.7 MB
**None**
BASE_URL NGINX_VERSION1.19.4
NJS_VERSION0.4.4
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE1
PORT8080
SWAGGER_JSON/app/swagger.json
SWAGGER_JSON_URL[#000] sha256:188c0c94c7c576fff0792aca7ec73d67a2f7f4cb3a6e53a84559337260b36964 - 8.98% (2.67 MB)
[#001] sha256:0ca72de6f95718a4bd36e45f03fffa98e53819be7e75cb8cd1bcb0705b845939 - 21.72% (6.45 MB)
[#002] sha256:9dd8e8e549988a3e2c521f27f805b7a03d909d185bb01cdb4a4029e5a6702919 - 0.0% (600 Bytes)
[#003] sha256:f2dc206a393cd74df3fea6d4c1d3cefe209979e8dbcceb4893ec9eadcc10bc14 - 0.0% (894 Bytes)
[#004] sha256:85defa007a8b33f817a5113210cca4aca6681b721d4b44dc94928c265959d7d5 - 0.0% (666 Bytes)
[#005] sha256:9898be3eb2cc991558989bf4ca32995ea88712b6383d6640021d871e9a0fa91b - 37.37% (11.1 MB)
[#006] sha256:965f3193259671ac127a4b3c3232093928655f72580fda4d6e7fe04ddb4e2c0a - 0.0% (904 Bytes)
[#007] sha256:ca0723b9485a02a09245dc3c0eb96f7b2c71d08a06d0536b7882a6b69832c1f9 - 15.94% (4.74 MB)
[#008] sha256:659dc6157c7c9aa2d7a77a7e3f3e00a4e84de671ce3847ad938389100bd2bac6 - 0.0% (891 Bytes)
[#009] sha256:dc28c59e50d3d3e8b501baa7e041b4da0834f02bdf41e6bc52d100652895a6d0 - 0.01% (2.93 KB)
[#010] sha256:a47972685272ab406eccb3f3138c8a3fd487a246a6d9d674a99ad1a48fc918db - 15.97% (4.75 MB)
/bin/sh -c #(nop) ADD file:f17f65714f703db9012f00e5ec98d0b2541ff6147c2633f7ab9ba659d0c507f4 in /
2020-10-22 02:19:24 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-10-22 07:53:38 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2020-11-05 18:21:47 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.19.4
2020-11-05 18:21:47 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2020-11-05 18:21:47 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=1
2020-11-05 18:21:52 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) 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/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 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
2020-11-05 18:21:52 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2020-11-05 18:21:52 UTC/bin/sh -c #(nop) COPY file:13577a83b18ff90a0f97a15cd6380790a5f5288c651fa08708ff64d3f1595861 in /docker-entrypoint.d
2020-11-05 18:21:52 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2020-11-05 18:21:52 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2020-11-05 18:21:53 UTC/bin/sh -c #(nop) EXPOSE 80
2020-11-05 18:21:53 UTC/bin/sh -c #(nop) STOPSIGNAL SIGTERM
2020-11-05 18:21:53 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2020-11-06 17:40:33 UTC/bin/sh -c apk --no-cache add nodejs
2020-11-06 17:40:33 UTC/bin/sh -c #(nop) LABEL maintainer=fehguy
2020-11-06 17:40:33 UTC/bin/sh -c #(nop) ENV API_KEY=**None**
2020-11-06 17:40:34 UTC/bin/sh -c #(nop) ENV SWAGGER_JSON=/app/swagger.json
2020-11-06 17:40:34 UTC/bin/sh -c #(nop) ENV PORT=8080
2020-11-06 17:40:34 UTC/bin/sh -c #(nop) ENV BASE_URL=
2020-11-06 17:40:34 UTC/bin/sh -c #(nop) ENV SWAGGER_JSON_URL=
2020-11-13 19:26:55 UTC/bin/sh -c #(nop) COPY multi:8befbae349c715b373a862638470ba750d2ca7dfadbeb975b2dd54864968c6d0 in /etc/nginx/
2020-11-19 23:36:42 UTC/bin/sh -c #(nop) COPY multi:48b257cecd3cf6fd1a92a57057edff9d5fd1f9ed1e0f9121eee3e37b82280a17 in /usr/share/nginx/html/
2020-11-19 23:36:42 UTC/bin/sh -c #(nop) COPY file:a2872dcfbf5b63024d65f560f71dff0fb04019ef8f9009176f6a3b27938a3e3f in /usr/share/nginx/
2020-11-19 23:36:42 UTC/bin/sh -c #(nop) COPY dir:1744836b10240c93ad50ef0258e3e1810de96b545ea9b0562b59b2b9c1939dcc in /usr/share/nginx/configurator
2020-11-19 23:36:43 UTC/bin/sh -c chmod +x /usr/share/nginx/run.sh && chmod -R a+rw /usr/share/nginx && chmod -R a+rw /etc/nginx && chmod -R a+rw /var && chmod -R a+rw /var/run
2020-11-19 23:36:43 UTC/bin/sh -c #(nop) EXPOSE 8080
2020-11-19 23:36:44 UTC/bin/sh -c #(nop) CMD ["sh" "/usr/share/nginx/run.sh"]
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.