2019-08-23 20:33:50 UTC
45.2 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.16.0
NJS_VERSION0.3.1
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE1
[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 5.82% (2.63 MB)
[#001] sha256:8985e402e050840450bd9d60b40a9bec70d57a507b33a85e5c3b3caf2e0ada6e - 11.94% (5.4 MB)
[#002] sha256:740ff8c967747f03d6146bc141ef2a146fe4ccf77b6a8ab22758c8405f5c69ab - 1.28% (592 KB)
[#003] sha256:1001182b5e951e5159d199f1e6bea7413c5a7fd0d5d4f935d0f5b9cc662b0a70 - 24.7% (11.2 MB)
[#004] sha256:2a69d32d62013167c9bf9efb726e130b678851d14eca6b873632a265e58ffde0 - 0.0% (160 Bytes)
[#005] sha256:93b6ff6eadd408d9c24cd51a74f19ddf0926717fca100e2af649cf04a748bb5b - 34.17% (15.4 MB)
[#006] sha256:b9154a5098a40b19572c10297dfa7774734904313034e9a2fd64d30dd27ed344 - 3.69% (1.67 MB)
[#007] sha256:110c04bafdb271b272435f550a5d2a43d988584bd30e3877ab92cee6315b156c - 10.88% (4.92 MB)
[#008] sha256:b9b0ffffe05749bdba96c3bc53c017a373a0a48e08c97ac94fa4557684b9ec1b - 0.0% (443 Bytes)
[#009] sha256:8c8966526587d2ab7ede3a829d21679fa96251d9796ebce3be22b07b099140cc - 0.0% (276 Bytes)
[#010] sha256:23236ae7fa1f14fddb43b3b491faf9b136408b6b162442336a9ae6c50e72a431 - 0.0% (745 Bytes)
[#011] sha256:4a2a379f8ac41bedf9920a8737faee3ec761ccf2391b491acd947e08f7d0d518 - 0.0% (2.22 KB)
[#012] sha256:493b33392389023f091e378a0159795bf9af03db69901c0a43cb0d5eb55993f9 - 7.51% (3.4 MB)
/bin/sh -c #(nop) ADD file:a86aea1f3a7d68f6ae03397b99ea77f2e9ee901c5c59e59f76f93adbb4035913 in /
2019-05-11 00:07:03 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-05-11 00:34:31 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2019-05-11 00:37:48 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.0
2019-05-11 00:37:48 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.3.1
2019-05-11 00:37:48 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=1
2019-05-11 00:37:59 UTC/bin/sh -c set -x && 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 curl ca-certificates && curl -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 && printf "%s%s%s\n" "http://nginx.org/packages/alpine/v" `egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release` "/main" | tee -a /etc/apk/repositories && apk del .cert-deps ;; *) 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 " && echo "${tempDir}/packages/alpine/" >> /etc/apk/repositories && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del .build-deps ;; esac && apk add --no-cache $nginxPackages && 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 && sed -i '$ d' /etc/apk/repositories && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log
2019-05-11 00:38:01 UTC/bin/sh -c #(nop) EXPOSE 80
2019-05-11 00:38:01 UTC/bin/sh -c #(nop) STOPSIGNAL SIGTERM
2019-05-11 00:38:01 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2019-08-23 20:33:37 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2019-08-23 20:33:37 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2019-08-23 20:33:38 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
2019-08-23 20:33:39 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2019-08-23 20:33:41 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
2019-08-23 20:33:42 UTC|1 ARCH=amd64 /bin/sh -c mkdir -p /opt/cni/bin
2019-08-23 20:33:44 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
2019-08-23 20:33:45 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}
2019-08-23 20:33:45 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
2019-08-23 20:33:47 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
2019-08-23 20:33:47 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2019-08-23 20:33:47 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2019-08-23 20:33:48 UTC/bin/sh -c #(nop) COPY multi:320e0987ab3403a06f3f794891a29548fd4ce7ef42ae2c9e66603a55cd2c44fd in /usr/bin/
2019-08-23 20:33:48 UTC/bin/sh -c #(nop) COPY multi:a40defef61948d2e245c428db8db8bbef5784f8e3c63a3e4d87edbff5fec0040 in /opt/rke-tools/
2019-08-23 20:33:48 UTC/bin/sh -c #(nop) COPY file:176c29f1b4eb560e759b6fe0605fe8ad389a3dfbf70ca90801d14d96da82c3c4 in /opt/rke-tools
2019-08-23 20:33:48 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2019-08-23 20:33:49 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2019-08-23 20:33:49 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2019-08-23T20:33:36Z
2019-08-23 20:33:49 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-23 20:33:49 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=cb5672e3091b95fe3c79512a44b3bb29dece58db
2019-08-23 20:33:50 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2019-08-23 20:48:09 UTC
271 MB
C:\Users\ContainerAdministrator\AppData\Local
PATHC:\Windows\system32;C:\Windows;C:\Program Files\PowerShell;
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePath\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:85bcf813f547ea541f45281e987b5006b02919ed404f96d666d30402bfcf1f85 - 35.29% (95.8 MB)
[#001] sha256:9d2a47d1687131b421b341a329fbde2777cf8bd3331fcd0af360ca01bfd2235d - 0.0% (830 Bytes)
[#002] sha256:2ae67332ba7e8784b31f8f9161634c2021ab7e7ee7f58f961900d9b19f2b3756 - 0.0% (812 Bytes)
[#003] sha256:db9b0debabc1fa54667d359d039563466c8e0262112d2c34b2dd22fc015d3e02 - 0.0% (830 Bytes)
[#004] sha256:5e62e0bf1bab022a3a81e259035a92e523ca398f360a338ffaeb3bd881906325 - 0.0% (860 Bytes)
[#005] sha256:9aadc79687a01bcba98f09a0585b1081a6a8a49e8d3aedaeae60d5910f36a490 - 0.0% (832 Bytes)
[#006] sha256:5b2b129bf7e429fdfcefac0cb425f33045386d656a394faa133ec4862ffbe370 - 0.0% (829 Bytes)
[#007] sha256:a04d3ed513d64e04aee96ae6f95b90fd44885a896f9fc6cd34aa315680df33bf - 20.43% (55.4 MB)
[#008] sha256:3a8add4865654bc667733a176d017113cae6de64dda8a7c7b6e5739dccaba3ec - 0.05% (128 KB)
[#009] sha256:f283f3fd09f462bd19ddf38fa6c3eb41efebad3817e6da400d28e5cd65832e1a - 0.0% (827 Bytes)
[#010] sha256:e332b6da5835d98fe93f532175fb6a960001d84b24e4df87d87a32aa1a2dfff2 - 0.0% (823 Bytes)
[#011] sha256:18ecd37a61fef57443c27bae9fa75e1ac542a6f5624e624214d3d1bf5db71c4d - 0.01% (41.4 KB)
[#012] sha256:72e9bf87f57e59b6c0dc07df76eec0fd70257b89128d2ce4f894ed247b6240d4 - 3.58% (9.7 MB)
[#013] sha256:21bdb92515e11f5b8f142069a34fcff1d815a95e82982de0e040d29ba3d7f5fd - 0.61% (1.66 MB)
[#014] sha256:dd851d38c58b3cce3b535ca4548b9c16a0994b2937371ccca3440f421dcca4e7 - 5.36% (14.5 MB)
[#015] sha256:a30c4cc0f8cd7e30a92b3452ef288322a754643fde1ae59c43a75cdd84766317 - 3.05% (8.28 MB)
[#016] sha256:fce53c8779fbc809b9d3669079a01d4d33120bffecc02e4559b81ad7bd92258d - 0.07% (205 KB)
[#017] sha256:c0912d12ad223af3619d6a3df169572bdad6548e10214e4990c7ad781c092141 - 0.0% (8.12 KB)
[#018] sha256:01ed436ce3b1d7afe4ffd6570dbc2d01d239d41d850915af2ada7d0c285af025 - 31.53% (85.6 MB)
[#019] sha256:208967d2d6ded366c6b6613a2af3aeb9767d7fd93c1aa5ed869237eeaf826466 - 0.0% (1.47 KB)
[#020] sha256:bff21de15e9d74fcebb0c4e72644cb4c0a78b3e7786c0970f654effff25e9d46 - 0.0% (1.4 KB)
[#021] sha256:2d02e6b0fa63bb36dd360eab2fe0aceaa22a27099ca92adbc9a28f29f058f592 - 0.0% (4.86 KB)
[#022] sha256:19d0da3f8ff71ae00f42f40da5622cfd8e0958f7b35547efc2037ab73f06a5eb - 0.0% (5.5 KB)
[#023] sha256:9123772bac2707c11da8e3f91369c02c85abfa77159cf991d56ca7707a3250a6 - 0.0% (827 Bytes)
[#024] sha256:a9a4bbfbf1e4206a4d94d2dfd3e0cb93759d8062e95d0fa4042103e427fe3304 - 0.0% (826 Bytes)
[#025] sha256:da47aa1b0d6fbd4879144e2b264d25f8b7636ce83141f42adf7dce86d037794c - 0.0% (825 Bytes)
[#026] sha256:07b9ac661b2cfa8ede1dabecebbacba3763003c98b6e01067abd9b0122ac81f5 - 0.0% (901 Bytes)
[#027] sha256:14721a8076a39ae5eb9c5ea9fe5c8d1405ca59a031f04d984aed82a7e4966778 - 0.0% (824 Bytes)
[#028] sha256:c3a2792a1035d91831b6c6a0c83dead9364c459c7acd6d0f4aa1ff5f590fc9ea - 0.0% (825 Bytes)
[#029] sha256:2fcd6c5c4e96e6713d0f822979df3e53aadda0d88f3111dddfa52e8076824d34 - 0.0% (892 Bytes)
Apply image 1809-KB4511553-amd64
2019-08-19 17:00:35 UTCcmd /S /C #(nop) ARG VCS_REF=none
2019-08-19 17:00:35 UTCcmd /S /C #(nop) ARG PS_VERSION=6.2.0
2019-08-19 17:00:36 UTCcmd /S /C #(nop) ARG IMAGE_NAME=mcr.microsoft.com/powershell
2019-08-19 17:00:36 UTCcmd /S /C #(nop) LABEL maintainer=PowerShell Team <powershellteam@hotmail.com> readme.md=https://github.com/PowerShell/PowerShell/blob/master/docker/README.md description=This Dockerfile will install the latest release of PowerShell. org.label-schema.usage=https://github.com/PowerShell/PowerShell/tree/master/docker#run-the-docker-image-you-built org.label-schema.url=https://github.com/PowerShell/PowerShell/blob/master/docker/README.md org.label-schema.vcs-url=https://github.com/PowerShell/PowerShell-Docker org.label-schema.name=powershell org.label-schema.vcs-ref=8da8107 org.label-schema.vendor=PowerShell org.label-schema.version=6.2.2 org.label-schema.schema-version=1.0 org.label-schema.docker.cmd=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1809 pwsh -c '' org.label-schema.docker.cmd.devel=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1809 org.label-schema.docker.cmd.test=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1809 pwsh -c Invoke-Pester org.label-schema.docker.cmd.help=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1809 pwsh -c Get-Help
2019-08-19 17:00:37 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
2019-08-19 17:00:38 UTCcmd /S /C #(nop) ENV PATH=C:\Windows\system32;C:\Windows;C:\Program Files\PowerShell;
2019-08-19 17:00:53 UTCcmd /S /C #(nop) COPY dir:92722a38110b443b862bc7b32a7b9ffc33257095248915ed64af91b7224e6477 in C:\Program Files\PowerShell
2019-08-19 17:01:50 UTC|3 IMAGE_NAME=mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1809 PS_VERSION=6.2.2 VCS_REF=8da8107 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 ; }"
2019-08-19 17:01:52 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2019-08-21 15:18:19 UTCcmd /S /C #(nop) USER ContainerAdministrator
2019-08-21 15:18:19 UTCcmd /S /C #(nop) COPY file:7c80292bbdacca850f1c78ac775579f109a75cbe9ac1bb97343dd4ce682a68b3 in \Windows\System32\
2019-08-21 15:18:21 UTCcmd /S /C #(nop) COPY multi:16dde92bdc7736db15d4e2ee9d58dfa2514cca9cb865261b79e803bbfc9d97b1 in \Windows\
2019-08-21 15:18:22 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2019-08-21 15:18:23 UTCcmd /S /C #(nop) COPY multi:e57c2c5b01f1d528a6dbf16cea656dd9c2c6d654dfc2516d54e675cc05cb4b98 in \opt\cni\bin\
2019-08-21 15:18:24 UTCcmd /S /C #(nop) COPY file:475865290df3a6cba84a566d32d877cbb41da32fb92dc040522e7ba42477e9b1 in \opt\bin\
2019-08-21 15:18:25 UTCcmd /S /C #(nop) COPY dir:fb4dce9f658bcb0ff4c11527e4071d2b41a05f9f51fa6dee8922ac79357a7b52 in \share\kubelet-volumeplugins
2019-08-21 15:18:25 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2019-08-23 20:48:05 UTCcmd /S /C #(nop) COPY file:4cdf5ca882365cf57938751be678216d1e486f2716adc80568d39ad25fc7d769 in \share\azure-cli.zip
2019-08-23 20:48:05 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2019-08-23 20:48:06 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2019-08-23 20:48:06 UTCcmd /S /C #(nop) COPY multi:d5c54ec42a18b58b88ab818a5d177fd9b4d077ea218bf147a01be3677835f9b1 in \usr\bin\
2019-08-23 20:48:07 UTCcmd /S /C #(nop) COPY multi:b2bce70b90b80533a58087caea0e952daf993fe97ee778df1314b8274109930e in \share\scripts\
2019-08-23 20:48:07 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2019-08-23 20:48:07 UTCcmd /S /C #(nop) VOLUME [c:/run]
2019-08-23 20:48:08 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2019-08-23 20:48:08 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2019-08-23T20:33:21Z
2019-08-23 20:48:08 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-23 20:48:09 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=cb5672e3091b95fe3c79512a44b3bb29dece58db
2019-08-23 20:48:09 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2019-08-23 20:51:27 UTC
273 MB
C:\Users\ContainerAdministrator\AppData\Local
PATHC:\Windows\system32;C:\Windows;C:\Program Files\PowerShell;
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePath\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:efc2c67379e10dde690451529fb38020db1cec471828bb0381397b1becbd276d - 35.79% (97.9 MB)
[#001] sha256:71a666bec8850b81625837e4439eb78f9c543d46c7ae380cb17b11a17cbd9f0f - 0.0% (833 Bytes)
[#002] sha256:04966aec55be4d4b28a96ffe63361484f247b7cb0fea3d656a580dcf7eddd618 - 0.0% (853 Bytes)
[#003] sha256:92b9831c91e76f6ad8393c2482355bed24becccf09697c9d8ac55307a8252a89 - 0.0% (827 Bytes)
[#004] sha256:8909a87662b4d837d37d7e26ee08083e779cfae99e8003a02504cd11cb42436f - 0.0% (857 Bytes)
[#005] sha256:a0cebf73453fa115d0e42e381cc9b38f17b447f63499ba37b7ecafbcd53c7e34 - 0.0% (823 Bytes)
[#006] sha256:5aba5a860347fd35a3e7e819acf404ffd3b2f78e76a5462a958b820b56f62106 - 0.0% (853 Bytes)
[#007] sha256:cd827dfc524e83ec56b6e6381b4a705db62e8b56acc763013488ef4aaa10f59d - 20.27% (55.4 MB)
[#008] sha256:065af5a8526fc2990e9e7fe98ab9270a74210628a1bf1a3f719e1ed1407c8d7c - 0.05% (128 KB)
[#009] sha256:185ce566cde1fd81a2cd4a9ce4587e36b6309320d67ed0e1953f4571022b8d53 - 0.0% (828 Bytes)
[#010] sha256:538dac81252381848ecd9e3f2849f41a7a8a78c2656376a69accf53f26cd2965 - 0.0% (824 Bytes)
[#011] sha256:8d1afd0158aa9224c44fc1d9ad9f981cad93e419df20bca519da1e2e48c7049b - 0.01% (41.4 KB)
[#012] sha256:2ccb7dafa7bc3e8972d5619ffdf0dd8794b3b2aee93309dba2c21d617629f665 - 3.55% (9.7 MB)
[#013] sha256:983a831e2383d987a0fcd67c79b4777633bd259f1029f53598280005b7b7b8ef - 0.61% (1.66 MB)
[#014] sha256:69b6302f2c990a6b89169bee0ab5f29c88ccd838dde83572cbfcd2a370e92b28 - 5.32% (14.5 MB)
[#015] sha256:0ec735d864f527b0299f8c2695b18d4705c829a42a10f45d50e9772df1df3f11 - 3.03% (8.28 MB)
[#016] sha256:66e8b919993ab622f5566448c4eb0f346a95ab54f43222bdcd24f19927a65d6a - 0.07% (205 KB)
[#017] sha256:00bd6a95adadf35935b8e9990862d7d26a55f0aa13cb5f0e42c6e989ca46a904 - 0.0% (8.04 KB)
[#018] sha256:ef6c56a165370e1cd65bc84d756dcf3c89fcac4000877acf190cb82b11c0b048 - 31.29% (85.6 MB)
[#019] sha256:d859c753f914e779e4cb65ccb6f7aa57385f88df361258ec1164c39d09d962f1 - 0.0% (1.47 KB)
[#020] sha256:a464f77576689128498983315301abedc2d7eee093f63b8f1eb1407af1e179e5 - 0.0% (1.35 KB)
[#021] sha256:37a45163d6a44243392704ae21f81aef3fe4fe9ffc2309bf4543f885d320d227 - 0.0% (4.82 KB)
[#022] sha256:376c55bb8bd506906872a2f4ead3fe8e3b5eaf8d8f36dbc89ba0e6fcf09b65cc - 0.0% (5.49 KB)
[#023] sha256:709c16e6d61d373dac23658e58df27e9c801b1f66c6c75df415c97e8e18724e4 - 0.0% (900 Bytes)
[#024] sha256:d243d6bb0792715f1a8812340f33521e67394a28ccde246e29b742a4f3da6510 - 0.0% (852 Bytes)
[#025] sha256:65945ae0f9fdf81dfb3ab49fd975c780692407c9607d9bedb92c7943ab35ab7b - 0.0% (828 Bytes)
[#026] sha256:b08c843c32f249478e7c2648eb02cf99feaa2a7f1fa6545d8c1b8f7d4da2b89a - 0.0% (831 Bytes)
[#027] sha256:3bdcbab1f856f59d6425561b3b8a968870acbb31d13210b42a39143b07885156 - 0.0% (854 Bytes)
[#028] sha256:b974a3e1190163391abe7ff45168c6d1ffb1f6a3de8fd2a8281757de9674fa95 - 0.0% (849 Bytes)
[#029] sha256:bd6d0b66834ea5d874ac31939cd9d0f51ce045ef4498857f445e18b1ce5af4e6 - 0.0% (855 Bytes)
Apply image 1903-KB4512508-amd64
2019-08-19 17:09:11 UTCcmd /S /C #(nop) ARG VCS_REF=none
2019-08-19 17:09:11 UTCcmd /S /C #(nop) ARG PS_VERSION=6.2.0
2019-08-19 17:09:12 UTCcmd /S /C #(nop) ARG IMAGE_NAME=mcr.microsoft.com/powershell
2019-08-19 17:09:13 UTCcmd /S /C #(nop) LABEL maintainer=PowerShell Team <powershellteam@hotmail.com> readme.md=https://github.com/PowerShell/PowerShell/blob/master/docker/README.md description=This Dockerfile will install the latest release of PowerShell. org.label-schema.usage=https://github.com/PowerShell/PowerShell/tree/master/docker#run-the-docker-image-you-built org.label-schema.url=https://github.com/PowerShell/PowerShell/blob/master/docker/README.md org.label-schema.vcs-url=https://github.com/PowerShell/PowerShell-Docker org.label-schema.name=powershell org.label-schema.vcs-ref=8da8107 org.label-schema.vendor=PowerShell org.label-schema.version=6.2.2 org.label-schema.schema-version=1.0 org.label-schema.docker.cmd=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1903 pwsh -c '' org.label-schema.docker.cmd.devel=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1903 org.label-schema.docker.cmd.test=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1903 pwsh -c Invoke-Pester org.label-schema.docker.cmd.help=docker run mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1903 pwsh -c Get-Help
2019-08-19 17:09:13 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
2019-08-19 17:09:14 UTCcmd /S /C #(nop) ENV PATH=C:\Windows\system32;C:\Windows;C:\Program Files\PowerShell;
2019-08-19 17:09:25 UTCcmd /S /C #(nop) COPY dir:92722a38110b443b862bc7b32a7b9ffc33257095248915ed64af91b7224e6477 in C:\Program Files\PowerShell
2019-08-19 17:10:30 UTC|3 IMAGE_NAME=mcr.microsoft.com/v6.2.2/powershell:6.2.2-nanoserver-1903 PS_VERSION=6.2.2 VCS_REF=8da8107 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 ; }"
2019-08-19 17:10:31 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2019-08-21 18:05:21 UTCcmd /S /C #(nop) USER ContainerAdministrator
2019-08-21 18:05:22 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2019-08-23 18:52:51 UTCcmd /S /C #(nop) COPY multi:16dde92bdc7736db15d4e2ee9d58dfa2514cca9cb865261b79e803bbfc9d97b1 in \Windows\
2019-08-23 18:52:52 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2019-08-23 18:52:55 UTCcmd /S /C #(nop) COPY multi:e57c2c5b01f1d528a6dbf16cea656dd9c2c6d654dfc2516d54e675cc05cb4b98 in \opt\cni\bin\
2019-08-23 18:52:56 UTCcmd /S /C #(nop) COPY file:475865290df3a6cba84a566d32d877cbb41da32fb92dc040522e7ba42477e9b1 in \opt\bin\
2019-08-23 18:52:57 UTCcmd /S /C #(nop) COPY dir:fb4dce9f658bcb0ff4c11527e4071d2b41a05f9f51fa6dee8922ac79357a7b52 in \share\kubelet-volumeplugins
2019-08-23 18:52:58 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2019-08-23 20:51:22 UTCcmd /S /C #(nop) COPY file:7b78654e25ff15024147c2d7d592a4946d468368b8623c6e189744acf956fbfd in \share\azure-cli.zip
2019-08-23 20:51:23 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2019-08-23 20:51:23 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2019-08-23 20:51:24 UTCcmd /S /C #(nop) COPY multi:d5c54ec42a18b58b88ab818a5d177fd9b4d077ea218bf147a01be3677835f9b1 in \usr\bin\
2019-08-23 20:51:24 UTCcmd /S /C #(nop) COPY multi:b2bce70b90b80533a58087caea0e952daf993fe97ee778df1314b8274109930e in \share\scripts\
2019-08-23 20:51:25 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2019-08-23 20:51:25 UTCcmd /S /C #(nop) VOLUME [c:/run]
2019-08-23 20:51:25 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2019-08-23 20:51:26 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2019-08-23T20:33:21Z
2019-08-23 20:51:26 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-23 20:51:27 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=cb5672e3091b95fe3c79512a44b3bb29dece58db
2019-08-23 20:51:27 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2019-08-23 20:34:04 UTC
42.5 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.16.0
NJS_VERSION0.3.1
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE1
[#000] sha256:0362ad1dd800a9d92f8982fa28f173f9120266153830f990f7486f44b068968a - 6.04% (2.56 MB)
[#001] sha256:9af333ee6136727de78e785c6d6d6aba9ae74a102edb8a343ddb8d635a5755d6 - 12.89% (5.48 MB)
[#002] sha256:e89ea35dae8ef471601a2625b7470dce287b3d5534d7d77795ce18ce6890c4a4 - 1.38% (601 KB)
[#003] sha256:4d5308e51f6e7482a1d3196c520650cf81ded2dd0e2f5492855f83da4577b20b - 23.95% (10.2 MB)
[#004] sha256:0951cf18c568f4d51e7472f1f1eaade0afb21bcecc5c1cbe5141969079fb57fd - 0.0% (161 Bytes)
[#005] sha256:607b589f105aea61875e592c53f978185fad16b3b00934a06a6bdf862fad9e22 - 33.87% (14.4 MB)
[#006] sha256:d740c3e55a8aa0e0a4c724bcae59c8cae842a3266bdc9088be60a3d9b75e068e - 3.65% (1.55 MB)
[#007] sha256:feda149ac5c5e1660133054b4ad03a9a944b1f32a0dc60dc9340a151c191c1b2 - 10.86% (4.61 MB)
[#008] sha256:89765b7e1a2806583b0f9159560991bdee4a28f2553584f6b7228f5166814cb1 - 0.0% (439 Bytes)
[#009] sha256:a5c15a2f33e75665638013aab0153688b3a30e54453546ddca913696f47c45e1 - 0.0% (273 Bytes)
[#010] sha256:ba4ac559e2de6afb85514bcdb59b4715cd81bd5f9b053d7b26f505a27159aac5 - 0.0% (747 Bytes)
[#011] sha256:0e641910c6cfef71451317e57bb66900cb299cb49df6755d111b7ebe3d1b8567 - 0.01% (2.22 KB)
[#012] sha256:24cdfe4a823abd788d47c042698072617855c12b0789f0fbbaec669f29bb2dbf - 7.35% (3.12 MB)
/bin/sh -c #(nop) ADD file:66f49017dd7ba295602526dbf210046e47fd097298c17a3f268a47487b5b6379 in /
2019-06-19 20:39:47 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-06-19 22:32:21 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2019-06-19 22:38:30 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.0
2019-06-19 22:38:30 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.3.1
2019-06-19 22:38:30 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=1
2019-06-19 22:41:40 UTC/bin/sh -c set -x && 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 curl ca-certificates && curl -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 && printf "%s%s%s\n" "http://nginx.org/packages/alpine/v" `egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release` "/main" | tee -a /etc/apk/repositories && apk del .cert-deps ;; *) 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 " && echo "${tempDir}/packages/alpine/" >> /etc/apk/repositories && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del .build-deps ;; esac && apk add --no-cache $nginxPackages && 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 && sed -i '$ d' /etc/apk/repositories && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log
2019-06-19 22:41:41 UTC/bin/sh -c #(nop) EXPOSE 80
2019-06-19 22:41:41 UTC/bin/sh -c #(nop) STOPSIGNAL SIGTERM
2019-06-19 22:41:42 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2019-08-23 20:33:47 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2019-08-23 20:33:47 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2019-08-23 20:33:47 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
2019-08-23 20:33:48 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2019-08-23 20:33:52 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
2019-08-23 20:33:53 UTC|1 ARCH=arm64 /bin/sh -c mkdir -p /opt/cni/bin
2019-08-23 20:33:56 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
2019-08-23 20:33:58 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}
2019-08-23 20:33:58 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
2019-08-23 20:34:00 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
2019-08-23 20:34:00 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2019-08-23 20:34:01 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2019-08-23 20:34:01 UTC/bin/sh -c #(nop) COPY multi:320e0987ab3403a06f3f794891a29548fd4ce7ef42ae2c9e66603a55cd2c44fd in /usr/bin/
2019-08-23 20:34:01 UTC/bin/sh -c #(nop) COPY multi:a40defef61948d2e245c428db8db8bbef5784f8e3c63a3e4d87edbff5fec0040 in /opt/rke-tools/
2019-08-23 20:34:02 UTC/bin/sh -c #(nop) COPY file:b6e5891d70bea00d966061ad3465db87688f1abf43422d8731f72d0ea913c19d in /opt/rke-tools
2019-08-23 20:34:02 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2019-08-23 20:34:02 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2019-08-23 20:34:03 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2019-08-23T20:33:44Z
2019-08-23 20:34:03 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-23 20:34:04 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=cb5672e3091b95fe3c79512a44b3bb29dece58db
2019-08-23 20:34:04 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.