2020-09-25 12:47:19 UTC
46.1 MB
DOCKER_URL_amd64
DOCKER_URL_amd64https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz
DOCKER_URL_arm64https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz
ETCD_URLETCD_URL_amd64
ETCD_URL_amd64https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz
ETCD_URL_arm64https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz
NGINX_VERSION1.18.0
NJS_VERSION0.4.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE1
[#000] sha256:cbdbe7a5bc2a134ca8ec91be58565ec07d037386d1f1d8385412d224deafca08 - 5.82% (2.68 MB)
[#001] sha256:ad26925fbaa34f48c6121e49ea0d6835abb16c75aa7c25778044d7af90829f46 - 13.56% (6.25 MB)
[#002] sha256:7e638fd663f1663a65f3a444be2cb3490f8a4f8356788f38fc0ba3e2334016ef - 0.0% (601 Bytes)
[#003] sha256:8376eb50f57eafec1bdd096f4705efa0d143ef21927b8747aa7e8300280bae4c - 0.0% (899 Bytes)
[#004] sha256:3f7290122d8b3a176efa15620664a1a318b5ddc328ffe0a6169fc18e34a29c87 - 0.0% (666 Bytes)
[#005] sha256:c938c53391c517504a3a74de9a8424e50d8743fef96bfcde9922d746f00146f5 - 1.21% (571 KB)
[#006] sha256:04b3195993b110496aff0575b08ffb8c7be4bb41f2efc018f537f1cdb00146a2 - 23.49% (10.8 MB)
[#007] sha256:00ad92d94124b08583cefd66ca78a7a7878f59cb2f259a3d77abff7153cde824 - 0.0% (161 Bytes)
[#008] sha256:c82bbc7c37e6f7e62ba734185b631577e799ceb13bbd5c80c2680daeafcd11b7 - 33.48% (15.4 MB)
[#009] sha256:3d0ba921269497b61591403d729b0fe8759da5bb291c663c82966150bc75bea8 - 3.61% (1.67 MB)
[#010] sha256:924df336e783d0d43340e65abb0a25072ddd61d26ac661f48c96395225c80178 - 10.55% (4.87 MB)
[#011] sha256:dec11a202056fa74953468b7804703f5c297f1f1cf27293d3be9cb5ae106d7ae - 0.0% (442 Bytes)
[#012] sha256:e27ecfdcbde3cb94f6589eac659e2661c0b9b64212a81ea059ea08c82d0e73f4 - 0.0% (276 Bytes)
[#013] sha256:aa134f2ded072f4abbc88b7b1b8dc9aedb1af2a47fd565075aa681b13afaf498 - 0.0% (899 Bytes)
[#014] sha256:553801d49a4d0f7764530f607f13c3a33d71b4067192e5a8b6528fb8888b6399 - 0.01% (2.48 KB)
[#015] sha256:39c590602422b84d55f4bf03ed49b9386fbdf5bf0de95a75c816bb7868602542 - 8.28% (3.82 MB)
/bin/sh -c #(nop) ADD file:b91adb67b670d3a6ff9463e48b7def903ed516be66fc4282d22c53e41512be49 in /
2020-04-24 01:05:03 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 12:58:32 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2020-04-24 12:59:48 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2020-07-10 20:29:37 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.2
2020-07-10 20:29:37 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=1
2020-07-10 20:29:44 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/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 -r 489 && 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-07-10 20:29:44 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2020-07-10 20:29:45 UTC/bin/sh -c #(nop) COPY file:1d0a4127e78a26c11640bbedaeaa28ecafb5c40effef923390c04428192d665a in /docker-entrypoint.d
2020-07-10 20:29:45 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2020-07-10 20:29:46 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2020-07-10 20:29:46 UTC/bin/sh -c #(nop) EXPOSE 80
2020-07-10 20:29:46 UTC/bin/sh -c #(nop) STOPSIGNAL SIGTERM
2020-07-10 20:29:47 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2020-09-25 12:47:07 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2020-09-25 12:47:08 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2020-09-25 12:47:08 UTC/bin/sh -c #(nop) ENV DOCKER_URL_amd64=https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz DOCKER_URL_arm64=https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz DOCKER_URL=DOCKER_URL_amd64
2020-09-25 12:47:09 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2020-09-25 12:47:11 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add curl wget ca-certificates tar sysstat acl && mkdir -p /opt/rke-tools/bin /etc/confd && curl -sLf https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-linux-${ARCH} > /usr/bin/confd && chmod +x /usr/bin/confd && curl -sLf ${!DOCKER_URL} | tar xvzf - -C /opt/rke-tools/bin --strip-components=1 docker/docker && chmod +x /opt/rke-tools/bin/docker && apk del curl
2020-09-25 12:47:12 UTC|1 ARCH=amd64 /bin/sh -c mkdir -p /opt/cni/bin
2020-09-25 12:47:14 UTC|1 ARCH=amd64 /bin/sh -c wget -q -O - https://github.com/containernetworking/cni/releases/download/v0.4.0/cni-${ARCH}-v0.4.0.tgz | tar xzf - -C /tmp
2020-09-25 12:47:15 UTC|1 ARCH=amd64 /bin/sh -c wget -q -O /tmp/portmap https://github.com/rancher/plugins/releases/download/v1.9.1-rancher1/portmap-${ARCH}
2020-09-25 12:47:15 UTC/bin/sh -c #(nop) ENV ETCD_URL_amd64=https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz ETCD_URL_arm64=https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz ETCD_URL=ETCD_URL_amd64
2020-09-25 12:47:16 UTC|1 ARCH=amd64 /bin/sh -c wget -q -O - ${!ETCD_URL} | tar xzf - -C /tmp && mv /tmp/etcd-*/etcdctl /usr/local/bin/etcdctl && rm -rf /tmp/etcd-* && rm -f /etcd-*.tar.gz && apk del wget
2020-09-25 12:47:17 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2020-09-25 12:47:17 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2020-09-25 12:47:17 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2020-09-25 12:47:17 UTC/bin/sh -c #(nop) COPY multi:1e3030fac94c95639f44d341f086444c59cb8368c83117d13140ec71b2390a69 in /opt/rke-tools/
2020-09-25 12:47:18 UTC/bin/sh -c #(nop) COPY file:01950588587dcf3cbbb891e86f01ffbe0bd7323034f784dc4f5498b40ee42afa in /opt/rke-tools
2020-09-25 12:47:18 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2020-09-25 12:47:18 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2020-09-25 12:47:19 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2020-09-25T12:47:06Z
2020-09-25 12:47:19 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2020-09-25 12:47:19 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=faee3acbd1a6320047f5180c596f2b93e8578855
2020-09-25 12:47:19 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-09-25 12:48:17 UTC
229 MB
C:\Users\ContainerAdministrator\AppData\Local
POWERSHELL_DISTRIBUTION_CHANNELPSDocker-NanoServer-1809-KB4565349-amd64
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePath\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:ce1c649a3e5b5b5449776d4afce631c673cade12336ccb5a38a0aac7c9d8b2bc - 42.06% (96.3 MB)
[#001] sha256:3650fec0ef6bbd59ef76eb73b3728f270cdfd4e5c23ff3a4f67f1aa71e8b476e - 0.0% (838 Bytes)
[#002] sha256:f88676ecf4cfbb7c51d6acddc9cc258f5382cd58b3b61587b60bdbfe22468339 - 0.0% (842 Bytes)
[#003] sha256:6b01b77ca2a1cd7192352f713781ac154c93275cbdb4891fb8dad86ba53f642f - 0.0% (838 Bytes)
[#004] sha256:8a0327f8ab813aca186bd82849954bfe720ea463b6be465969aab977f806dd30 - 0.03% (67 KB)
[#005] sha256:c7ecbf60bce08e33c4a83794e9aab6783513061c7858281a9b13042383cf000c - 0.0% (837 Bytes)
[#006] sha256:cfd618c4c1da8c3f69986665623201e96143693c89dd759f75c9030db701e4f1 - 38.84% (88.9 MB)
[#007] sha256:62598564b6a3a719aa27ad95fbdb832b2c55f8354b11213857688d9b18b68ba9 - 0.04% (92 KB)
[#008] sha256:09e8875832f3450f43161e05d8304353a8df24ef78a60c6df69c5ae1e72215b9 - 0.0% (827 Bytes)
[#009] sha256:c298bf23b54345dfe5c37e6ec717b2808fbf916131b2e8ea0973159c9e4efa60 - 0.0% (853 Bytes)
[#010] sha256:352af2ab1a6c60dcaffe46e3d8f2461b268eab680c48ad34da28797ae3dfabe0 - 0.02% (41.4 KB)
[#011] sha256:25e004d200605a8f0ff56d4c4fe8579256280ab3ee345c2d98230c5d8f043e7b - 4.31% (9.88 MB)
[#012] sha256:e73111810c1d2823dba07bb6f78e8e84efd79af3b57db52cd1bba089a7972432 - 0.72% (1.66 MB)
[#013] sha256:cbf4250cad8f967290065939ab2884634034515640e39539a0e15043d4f54779 - 7.26% (16.6 MB)
[#014] sha256:8ea361431e78874b92614f19bced901682242c690ca00af9d451497b2e9e99d9 - 6.62% (15.2 MB)
[#015] sha256:80d7c571bcc409780bd0347476afd1a1c864e8d4a25b41091c44183545197780 - 0.09% (209 KB)
[#016] sha256:0e41a7fe15ed0ede1af4fa8ca1554b1f2558cf433f725ded2dcf7f6bd2191906 - 0.0% (8.07 KB)
[#017] sha256:a8c8abbb807ec57daadf00e34212f7adf60718f1a76c5c9efc00788224fd6b11 - 0.0% (1.49 KB)
[#018] sha256:3fc3434f266359495f942e199882d37ea2e64e1152ce64431ca6c586002f4b18 - 0.0% (1.36 KB)
[#019] sha256:5391e13a121270506934bf7630ddaa30290830ba914193da592d0bb51fcd423f - 0.0% (7.6 KB)
[#020] sha256:5be6bef18918e32e04c783741dadc7b310442c8f510a8ab758fda431ee4019b4 - 0.0% (6.62 KB)
[#021] sha256:47339aadf24a4b6e68c4b8cf2695bf64b2f91ede9e9b50da6607f5ee4e48438d - 0.0% (827 Bytes)
[#022] sha256:48088b5f22fbd6e1e826f253560d5793afdbd47a62bea2933febfd5024401d61 - 0.0% (832 Bytes)
[#023] sha256:88a4f085ec4efd0119246a7a1d63de2af37d5c6de1195abf9f0c9c7e0378c458 - 0.0% (855 Bytes)
[#024] sha256:0df58d4f22362e98b903d3cc0ad420849dd6520ef66a48d0446b09850b6f3d8c - 0.0% (851 Bytes)
[#025] sha256:4a5740b1d9900cb798a2c9e539e6d2004d6b0183443a8729e1bc5d69a6da2270 - 0.0% (830 Bytes)
[#026] sha256:e19fac552d18d6a7e8aefc686076c71652e37fdef73c2d99bd6da1f9084f66b2 - 0.0% (828 Bytes)
[#027] sha256:24c4269ee40cf0faa98e9a6d8b778f4b22afae459da1db872ddd08b8166eb5cb - 0.0% (824 Bytes)
Apply image 1809-KB4565349-amd64
2020-09-08 16:46:56 UTCcmd /S /C #(nop) ARG fromTag=1709
2020-09-08 16:46:56 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files LOCALAPPDATA=C:\Users\ContainerAdministrator\AppData\Local PSModuleAnalysisCachePath=\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1809-KB4565349-amd64
2020-09-08 16:46:57 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-09-08 16:47:06 UTC|1 fromTag=1809-KB4565349-amd64 cmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-09-08 16:47:07 UTCcmd /S /C #(nop) USER ContainerUser
2020-09-08 16:47:23 UTCcmd /S /C #(nop) COPY dir:68028cb352ac636b8c7e297d0fe596cce2f9a5bc0e5acd06a2d0b97c059d340c in C:\Program Files\PowerShell
2020-09-08 16:48:05 UTC|1 fromTag=1809-KB4565349-amd64 cmd /S /C pwsh -NoLogo -NoProfile -Command " $stopTime = (get-date).AddMinutes(15); $ErrorActionPreference = 'Stop' ; $ProgressPreference = 'SilentlyContinue' ; while(!(Test-Path -Path $env:PSModuleAnalysisCachePath)) { Write-Host "'Waiting for $env:PSModuleAnalysisCachePath'" ; if((get-date) -gt $stopTime) { throw 'timout expired'} Start-Sleep -Seconds 6 ; }"
2020-09-08 16:48:05 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2020-09-20 15:16:35 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-09-25 12:48:09 UTCcmd /S /C #(nop) COPY file:7c80292bbdacca850f1c78ac775579f109a75cbe9ac1bb97343dd4ce682a68b3 in \Windows\System32\
2020-09-25 12:48:09 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2020-09-25 12:48:10 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2020-09-25 12:48:11 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2020-09-25 12:48:12 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2020-09-25 12:48:13 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2020-09-25 12:48:13 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2020-09-25 12:48:14 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2020-09-25 12:48:14 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2020-09-25 12:48:14 UTCcmd /S /C #(nop) COPY multi:6a81f0f0024b9764c0b6929ff33ed0f0337a580bb808e11f8489731c63ff970a in \usr\bin\
2020-09-25 12:48:15 UTCcmd /S /C #(nop) COPY multi:a7f9a3d95a068082c96553fd96557ecab1d4a5224a16697a2d0ba17e7ff4d7e8 in \share\scripts\
2020-09-25 12:48:15 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2020-09-25 12:48:15 UTCcmd /S /C #(nop) VOLUME [c:/run]
2020-09-25 12:48:16 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2020-09-25 12:48:16 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2020-09-25T12:46:49Z
2020-09-25 12:48:17 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2020-09-25 12:48:17 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=faee3acbd1a6320047f5180c596f2b93e8578855
2020-09-25 12:48:17 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-09-25 12:48:17 UTC
231 MB
C:\Users\ContainerAdministrator\AppData\Local
POWERSHELL_DISTRIBUTION_CHANNELPSDocker-NanoServer-1909-KB4565483-amd64
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePath\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:e8a609e7f617bec4bcf5ba70cf691a9884e732141eadfcc9c42c436f917d0164 - 42.44% (97.9 MB)
[#001] sha256:176a4bd330bfd072b56ffdbb984f062c94adc5769ce6a2134b388f8e92b717f4 - 0.0% (890 Bytes)
[#002] sha256:9af460dce600ec8a6e9b6526260039174a9c6a133d558fc4e8c2f59e6ae495df - 0.0% (840 Bytes)
[#003] sha256:a0d3f2217f3847a2c2103130a51e85d3dbd3e2d12f076bc16ed774c8f4a34773 - 0.0% (834 Bytes)
[#004] sha256:f2ba9edf93794bab84fb0e07690c26862a7e9e129acf96e5bfdced6c3bf0d230 - 0.03% (65.5 KB)
[#005] sha256:e49367b1f7899f36e95748d3442c28c85a4331e9d45be6ec919b1cb90e1856b3 - 0.0% (841 Bytes)
[#006] sha256:b29a42fcdf773c2a3862913bb7e7d58db675966a7909849d9e53f0a8c1e3fd00 - 38.57% (88.9 MB)
[#007] sha256:9f8a37ac3aec6d361cd1f1eb6122fa1ed61c19b7d970f3b541f3b3d938bf884b - 0.05% (122 KB)
[#008] sha256:547c54e71f4b4bfe1c93096405f58690b10a6095597fb50223e569cd17e13bc2 - 0.0% (862 Bytes)
[#009] sha256:cb28a07276038d75083c43761957ef8e8c9ea47a6a68e0b94f8ae72c1e09f59a - 0.0% (828 Bytes)
[#010] sha256:f8b15afba75194e5b7cf7b79f3c17ec60866a43769497338b7ad40fbea47a0c6 - 0.02% (41.4 KB)
[#011] sha256:a5fb7aac47849eae9d306d82102cabf4c0210b75c291ecf2bc64106a26698821 - 4.28% (9.88 MB)
[#012] sha256:1af39e84b5fb428e7a98c18b46458eab3174ed0af8649d434c231c5c533833ec - 0.72% (1.66 MB)
[#013] sha256:c7c9ddb277855f039d406cb66b69d5a2571a858a6247d79e23f3a0ffcfb365ca - 7.21% (16.6 MB)
[#014] sha256:c49b6d6f714a1635403c33b57fb7e069e6961427fb6682579f5824114e8d4d87 - 6.58% (15.2 MB)
[#015] sha256:a383384abee188f5dfe1f2d8857b27f4f59bd1a02a32e69392d32ef5a32ab5f8 - 0.09% (209 KB)
[#016] sha256:28c3c966e8d27d53adcb30e24868228f39ef10a223066a4b2f15c534ce42bec0 - 0.0% (8.06 KB)
[#017] sha256:5792241038b6abf2e797956258353d0919b5a2f4776f97f5bd9a9a7b45fd7c7e - 0.0% (1.5 KB)
[#018] sha256:6c1385fb3c1e79093aa10688db1e6317849e654fb435e5eba3f67a575d674306 - 0.0% (1.37 KB)
[#019] sha256:7e896c10e0f2f8ee535f5d6bbc82bdc1fd1b572a3ce45904253af73e4af89c22 - 0.0% (7.58 KB)
[#020] sha256:0accdd9bde3ed0048170b70a037193d80cd1073bdcb832122e2a13a23b96ae09 - 0.0% (6.65 KB)
[#021] sha256:893f5602267fa789f8467c0f403e9e54ff1d5f3db19af45016d8f74eedc88ed2 - 0.0% (832 Bytes)
[#022] sha256:a63fb494578474d6643bc224329a515f190b1f7d600a386b981aade3e15b69dc - 0.0% (833 Bytes)
[#023] sha256:50e1b131a4023701e37d39d6bdd36763d1e22824b30d3ab7f650757ee07c6cd8 - 0.0% (856 Bytes)
[#024] sha256:5941decddeee74295c9ea3ebf63be20b503ccdb6b35f6446e830743a87e47e65 - 0.0% (853 Bytes)
[#025] sha256:b53880bf1ffe3438e69c817fd74aad451e3e386c8757e6f10b0d084a62d4b9a4 - 0.0% (829 Bytes)
[#026] sha256:e77461c3245dac22b01280ec023bd274348415d4bb63d01fd7ca6221e7a98d1e - 0.0% (844 Bytes)
[#027] sha256:91589d74586e564660160f411436da366c9ae6ba1f387830ab2aa5dbeda4d577 - 0.0% (828 Bytes)
Apply image 1909-KB4565483-amd64
2020-09-08 16:58:38 UTCcmd /S /C #(nop) ARG fromTag=1709
2020-09-08 16:58:38 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files LOCALAPPDATA=C:\Users\ContainerAdministrator\AppData\Local PSModuleAnalysisCachePath=\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1909-KB4565483-amd64
2020-09-08 16:58:39 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-09-08 16:59:00 UTC|1 fromTag=1909-KB4565483-amd64 cmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-09-08 16:59:01 UTCcmd /S /C #(nop) USER ContainerUser
2020-09-08 16:59:14 UTCcmd /S /C #(nop) COPY dir:68028cb352ac636b8c7e297d0fe596cce2f9a5bc0e5acd06a2d0b97c059d340c in C:\Program Files\PowerShell
2020-09-08 16:59:48 UTC|1 fromTag=1909-KB4565483-amd64 cmd /S /C pwsh -NoLogo -NoProfile -Command " $stopTime = (get-date).AddMinutes(15); $ErrorActionPreference = 'Stop' ; $ProgressPreference = 'SilentlyContinue' ; while(!(Test-Path -Path $env:PSModuleAnalysisCachePath)) { Write-Host "'Waiting for $env:PSModuleAnalysisCachePath'" ; if((get-date) -gt $stopTime) { throw 'timout expired'} Start-Sleep -Seconds 6 ; }"
2020-09-08 16:59:48 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2020-09-20 21:21:36 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-09-25 12:48:09 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2020-09-25 12:48:10 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2020-09-25 12:48:10 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2020-09-25 12:48:11 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2020-09-25 12:48:12 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2020-09-25 12:48:13 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2020-09-25 12:48:13 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2020-09-25 12:48:14 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2020-09-25 12:48:14 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2020-09-25 12:48:14 UTCcmd /S /C #(nop) COPY multi:6a81f0f0024b9764c0b6929ff33ed0f0337a580bb808e11f8489731c63ff970a in \usr\bin\
2020-09-25 12:48:15 UTCcmd /S /C #(nop) COPY multi:a7f9a3d95a068082c96553fd96557ecab1d4a5224a16697a2d0ba17e7ff4d7e8 in \share\scripts\
2020-09-25 12:48:15 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2020-09-25 12:48:15 UTCcmd /S /C #(nop) VOLUME [c:/run]
2020-09-25 12:48:16 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2020-09-25 12:48:16 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2020-09-25T12:46:49Z
2020-09-25 12:48:16 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2020-09-25 12:48:17 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=faee3acbd1a6320047f5180c596f2b93e8578855
2020-09-25 12:48:17 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-09-25 12:48:09 UTC
231 MB
C:\Users\ContainerAdministrator\AppData\Local
POWERSHELL_DISTRIBUTION_CHANNELPSDocker-NanoServer-1903-KB4565483-amd64
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePath\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:f07c298b155a926cb3857f19bd243eb37ae8af769486fb258a756447b691840c - 42.44% (97.8 MB)
[#001] sha256:28c5e8c2d232426f7f1af5f0ce56946ee6cb3060b5ff4ae85773791fd09db17a - 0.0% (873 Bytes)
[#002] sha256:b52f710e5d3328dbef0b496b64cb38b8ea7ba9645bba96aceb48f9453576e6f5 - 0.0% (837 Bytes)
[#003] sha256:55fc2f22f5d9c39c7431c5c51b0e75537a2d08181dc0bd272c49751bdb67885c - 0.0% (862 Bytes)
[#004] sha256:771488126e41f4a3dec3b5d8877ee347236f05a57351c698374f1d1efdcbbdad - 0.03% (66.4 KB)
[#005] sha256:fcd3723e443e572be745cea6f03316525b4cfac670bd5a12aed97b9cab22305b - 0.0% (844 Bytes)
[#006] sha256:03db271c5e4bbd4dc330452ee7459456e89ad83ae8af2850813dd03b7e35d99a - 38.58% (88.9 MB)
[#007] sha256:65ea6ba0a04f932210d68a0861c0da62b590a2ffb49902fcb61f3dbc322198d1 - 0.04% (90.4 KB)
[#008] sha256:0cbe6ad83a5ffe3d7c973328a33fd1d0dce89d8f06b8dbf26ec610bb31fd6e2f - 0.0% (861 Bytes)
[#009] sha256:2c2d2e3dfb3cd73ef1bb5aac567684943d83bc7e2d9e3ec07294c392bf892cfc - 0.0% (851 Bytes)
[#010] sha256:3254f4012d1cd7eb3f53ed3b4cd6494a1b64952a7682ff253a1a35100f37ee60 - 0.02% (41.4 KB)
[#011] sha256:60f94e640b97ee4c040ca0b3d13f2a95bc1921a3e3f8261c0852a1731d27d2da - 4.28% (9.88 MB)
[#012] sha256:abca844abf67372502422f7ae6c87c9bfa70ae6400a64a8d91d37ac01d6f0790 - 0.72% (1.66 MB)
[#013] sha256:fcc1dbd065bfb6cc3627b0c08e95a15e5de5a9bf593926a6c22208ac1b77b940 - 7.21% (16.6 MB)
[#014] sha256:11f83db0c03fe612437f136c1b6607e1d933f76ebc131efda0548698c1fac62c - 6.58% (15.2 MB)
[#015] sha256:17295b499310671aac5204980e48dd606f3c8e9e70700e4969cc2c868f40ae8d - 0.09% (209 KB)
[#016] sha256:460e386b80de9b8e58cf5f566882a1503012bf1a95f45252b3a3bf4975b941e2 - 0.0% (8.07 KB)
[#017] sha256:7fd42a34ee2933a7f72b364d784d708946923249cc5e52bcba0d9c60b5056fd4 - 0.0% (1.52 KB)
[#018] sha256:e0b7d2a2e77509383f4b4533555a0dd591daf96f867616406941606718ed7fc9 - 0.0% (1.34 KB)
[#019] sha256:2deeda8fd0a9d64fba15275677a6d1d9598262507c0791f0356d4afbe19f7e73 - 0.0% (7.6 KB)
[#020] sha256:595762d48cf7ee0f5babf608dac15538d7b8a10d77e2e02a11e0a6f5f34af064 - 0.0% (6.62 KB)
[#021] sha256:46a4e5b63ce5220639d5a944e0dd9e54fdb7159da2742deb273fc57ff29e3c22 - 0.0% (824 Bytes)
[#022] sha256:b811745c5daeb9217adb68f59e920babc68092b7dd14255a42ba8d1872ae8b3a - 0.0% (832 Bytes)
[#023] sha256:8b98ba09eb908a43d151c80ad572e7ef23a510cd6a09f32fc527afa3080976b9 - 0.0% (830 Bytes)
[#024] sha256:3c4c0b545937a1a7811c3b9f87f16dd0e52030bad6ecb611ff71354256a7399b - 0.0% (830 Bytes)
[#025] sha256:4dbcc5691cb304560710918b7f5e8e3a403962022612c464b97a8e654915f166 - 0.0% (858 Bytes)
[#026] sha256:2c81bf5c7038157814da38793bcf793fbfc600c903a1984918eff207bc34cacb - 0.0% (830 Bytes)
[#027] sha256:37af3b5b474cc169e643efd755029dab45dd987bc5c78be5431730264587e585 - 0.0% (831 Bytes)
Apply image 1903-KB4565483-amd64
2020-09-08 16:52:31 UTCcmd /S /C #(nop) ARG fromTag=1709
2020-09-08 16:52:32 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files LOCALAPPDATA=C:\Users\ContainerAdministrator\AppData\Local PSModuleAnalysisCachePath=\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1903-KB4565483-amd64
2020-09-08 16:52:34 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-09-08 16:53:09 UTC|1 fromTag=1903-KB4565483-amd64 cmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-09-08 16:53:10 UTCcmd /S /C #(nop) USER ContainerUser
2020-09-08 16:53:37 UTCcmd /S /C #(nop) COPY dir:68028cb352ac636b8c7e297d0fe596cce2f9a5bc0e5acd06a2d0b97c059d340c in C:\Program Files\PowerShell
2020-09-08 16:54:12 UTC|1 fromTag=1903-KB4565483-amd64 cmd /S /C pwsh -NoLogo -NoProfile -Command " $stopTime = (get-date).AddMinutes(15); $ErrorActionPreference = 'Stop' ; $ProgressPreference = 'SilentlyContinue' ; while(!(Test-Path -Path $env:PSModuleAnalysisCachePath)) { Write-Host "'Waiting for $env:PSModuleAnalysisCachePath'" ; if((get-date) -gt $stopTime) { throw 'timout expired'} Start-Sleep -Seconds 6 ; }"
2020-09-08 16:54:13 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2020-09-22 23:58:33 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-09-23 15:56:51 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2020-09-23 15:56:52 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2020-09-23 15:56:52 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2020-09-23 15:56:53 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2020-09-23 15:56:54 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2020-09-23 15:56:55 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2020-09-23 15:56:55 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2020-09-23 15:56:56 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2020-09-23 15:56:56 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2020-09-23 15:56:56 UTCcmd /S /C #(nop) COPY multi:6a81f0f0024b9764c0b6929ff33ed0f0337a580bb808e11f8489731c63ff970a in \usr\bin\
2020-09-23 15:56:57 UTCcmd /S /C #(nop) COPY multi:a7f9a3d95a068082c96553fd96557ecab1d4a5224a16697a2d0ba17e7ff4d7e8 in \share\scripts\
2020-09-23 15:56:57 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2020-09-23 15:56:57 UTCcmd /S /C #(nop) VOLUME [c:/run]
2020-09-23 15:56:58 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2020-09-25 12:48:08 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2020-09-25T12:46:49Z
2020-09-25 12:48:08 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2020-09-25 12:48:09 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=faee3acbd1a6320047f5180c596f2b93e8578855
2020-09-25 12:48:09 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-09-25 12:47:14 UTC
43.2 MB
DOCKER_URL_arm64
DOCKER_URL_amd64https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz
DOCKER_URL_arm64https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz
ETCD_URLETCD_URL_arm64
ETCD_URL_amd64https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz
ETCD_URL_arm64https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz
NGINX_VERSION1.18.0
NJS_VERSION0.4.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE1
[#000] sha256:29e5d40040c18c692ed73df24511071725b74956ca1a61fe6056a651d86a13bd - 6.01% (2.6 MB)
[#001] sha256:353931ff766e1ffaa26783b9c64d6f97ddfa361a067cb977d30f0e4d32deeef6 - 14.35% (6.2 MB)
[#002] sha256:91d2f718411bddbd5fbb2c256b4cf67b19856169ef1bab0d620bc9c1f4979b4e - 0.0% (600 Bytes)
[#003] sha256:8ad0c4d20c73feed863176bbe6cdeca9f2bc2f98fc8985d9219a102dd4910114 - 0.0% (899 Bytes)
[#004] sha256:6148462e8060660ca27a851fdeb9ebe6a87966fa236d0ff9d22868813afaa51b - 0.0% (663 Bytes)
[#005] sha256:7d97ddaff5c899a93eb55b2de6eed6a8d486fe8a1b63360d34376909505c4a80 - 1.32% (583 KB)
[#006] sha256:e1c92bb7d2affd5937347784ec50aa5c1937556910edcd93b7a66f3d52bdc8a1 - 22.8% (9.86 MB)
[#007] sha256:c0a728080a6f92d8c29fbe544127342e105d6d157ac8f5b88a1669bca87e8e0d - 0.0% (161 Bytes)
[#008] sha256:b6192823ad7fe154467e0b61c37ef144149235a3832d7a2c6acb6b04c0feee24 - 33.29% (14.4 MB)
[#009] sha256:3b796ba8abee7c4aaf24034c3bff08acc947da410a2717490aa15e3dd76ab785 - 3.58% (1.55 MB)
[#010] sha256:25b40b9d2bf362c6bbe3c64f6c551a5d8f429bc178fdc0a8d9e69d02dda655a2 - 10.54% (4.56 MB)
[#011] sha256:c93ece5b763d83c5b48e3a5e451773ce060043599d520e6de84c770432733803 - 0.0% (443 Bytes)
[#012] sha256:237d4a54ead38f5b5526ff0573f84b711037ea73dd6f7a83887de08f0d47c3cf - 0.0% (277 Bytes)
[#013] sha256:2047721388d48b07e0993efa0c084f380db5c0717484c5f4a57fa286389b9d94 - 0.0% (899 Bytes)
[#014] sha256:e09dd8472c1e148acba8896284c14dfa651a44b25d108d6fc363e3dbae64e76a - 0.01% (2.48 KB)
[#015] sha256:4948f2da11d1e96a746740220ebe59084566f3589915e8cf44eb4d95b07c1a9e - 8.09% (3.5 MB)
/bin/sh -c #(nop) ADD file:85ae77bc1e43353ff14e6fe1658be1ed4ecbf4330212ac3d7ab7462add32dd39 in /
2020-04-24 00:14:21 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 04:01:39 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2020-04-24 04:22:22 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2020-07-10 20:51:17 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.2
2020-07-10 20:51:18 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=1
2020-07-10 20:54:38 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/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 -r 489 && 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-07-10 20:54:39 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2020-07-10 20:54:40 UTC/bin/sh -c #(nop) COPY file:1d0a4127e78a26c11640bbedaeaa28ecafb5c40effef923390c04428192d665a in /docker-entrypoint.d
2020-07-10 20:54:41 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2020-07-10 20:54:42 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2020-07-10 20:54:42 UTC/bin/sh -c #(nop) EXPOSE 80
2020-07-10 20:54:44 UTC/bin/sh -c #(nop) STOPSIGNAL SIGTERM
2020-07-10 20:54:44 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2020-09-25 12:47:02 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2020-09-25 12:47:02 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2020-09-25 12:47:02 UTC/bin/sh -c #(nop) ENV DOCKER_URL_amd64=https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz DOCKER_URL_arm64=https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz DOCKER_URL=DOCKER_URL_arm64
2020-09-25 12:47:03 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2020-09-25 12:47:06 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add curl wget ca-certificates tar sysstat acl && mkdir -p /opt/rke-tools/bin /etc/confd && curl -sLf https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-linux-${ARCH} > /usr/bin/confd && chmod +x /usr/bin/confd && curl -sLf ${!DOCKER_URL} | tar xvzf - -C /opt/rke-tools/bin --strip-components=1 docker/docker && chmod +x /opt/rke-tools/bin/docker && apk del curl
2020-09-25 12:47:07 UTC|1 ARCH=arm64 /bin/sh -c mkdir -p /opt/cni/bin
2020-09-25 12:47:09 UTC|1 ARCH=arm64 /bin/sh -c wget -q -O - https://github.com/containernetworking/cni/releases/download/v0.4.0/cni-${ARCH}-v0.4.0.tgz | tar xzf - -C /tmp
2020-09-25 12:47:10 UTC|1 ARCH=arm64 /bin/sh -c wget -q -O /tmp/portmap https://github.com/rancher/plugins/releases/download/v1.9.1-rancher1/portmap-${ARCH}
2020-09-25 12:47:10 UTC/bin/sh -c #(nop) ENV ETCD_URL_amd64=https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz ETCD_URL_arm64=https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz ETCD_URL=ETCD_URL_arm64
2020-09-25 12:47:12 UTC|1 ARCH=arm64 /bin/sh -c wget -q -O - ${!ETCD_URL} | tar xzf - -C /tmp && mv /tmp/etcd-*/etcdctl /usr/local/bin/etcdctl && rm -rf /tmp/etcd-* && rm -f /etcd-*.tar.gz && apk del wget
2020-09-25 12:47:12 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2020-09-25 12:47:12 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2020-09-25 12:47:12 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2020-09-25 12:47:13 UTC/bin/sh -c #(nop) COPY multi:1e3030fac94c95639f44d341f086444c59cb8368c83117d13140ec71b2390a69 in /opt/rke-tools/
2020-09-25 12:47:13 UTC/bin/sh -c #(nop) COPY file:bb9155c86a30efdc6e754ba4a93412e6509333e3949a8e9ba9115ddf8615ee9f in /opt/rke-tools
2020-09-25 12:47:13 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2020-09-25 12:47:13 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2020-09-25 12:47:14 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2020-09-25T12:47:00Z
2020-09-25 12:47:14 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2020-09-25 12:47:14 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=faee3acbd1a6320047f5180c596f2b93e8578855
2020-09-25 12:47:14 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
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.