2019-08-21 15:04:24 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:2895e19a8d7d974427cef95c5dd7d148c3a4dacec1a19d4499337917bae7a6cd - 1.28% (592 KB)
[#003] sha256:695cf87fcdbd5d0443dc03227d28aefc4ba9e1e6618f2a639bf9e482c9c57acd - 24.7% (11.2 MB)
[#004] sha256:1d9cf8f0762acf8c140c9e92bdb96f7652970c1cd851dca058061ad90e15736d - 0.0% (161 Bytes)
[#005] sha256:39693848ed4094f05e31b8eb1a35fdd773dd25601fdb5ba010746ae9339e9757 - 34.17% (15.4 MB)
[#006] sha256:3e8543e13c9d8ca0a87859bf51776ca4953cdde7573acd856592b84145f9cd6f - 3.69% (1.67 MB)
[#007] sha256:de03876ea0596de4e6c8618833c8301f15742d47f3f4b54ef3f4412e45311340 - 10.89% (4.92 MB)
[#008] sha256:cbbe16e685e519b1421d8fa3b1d68d6919f42fd95ee7a7dd0efcc3ca318257e3 - 0.0% (443 Bytes)
[#009] sha256:0e0d3e139dfd10d4e8e4e43a8f7f8a8b0a4a5f625e8d6900dfe8e1e5e13ae820 - 0.0% (275 Bytes)
[#010] sha256:fce2b484d683828fbea7a8358b47cd1df1d62fe6ce4c8cf06f52c503ff7e58a0 - 0.0% (749 Bytes)
[#011] sha256:735777a951c376180d491e3eee8a575ab3c1cb63dc8307e1572242c040efaea3 - 0.0% (2.22 KB)
[#012] sha256:8d005c40480b26a34ab1bd3721e7830410288fd12bd45ccc99ab2075d284c24e - 7.51% (3.39 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-21 15:04:10 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2019-08-21 15:04:10 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2019-08-21 15:04:10 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-21 15:04:11 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-21 15:04:14 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-21 15:04:15 UTC|1 ARCH=amd64 /bin/sh -c mkdir -p /opt/cni/bin
2019-08-21 15:04:17 UTC|1 ARCH=amd64 /bin/sh -c wget -q -O - https://github.com/containernetworking/cni/releases/download/v0.4.0/cni-amd64-v0.4.0.tgz | tar xzf - -C /tmp
2019-08-21 15:04:19 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-21 15:04:19 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-21 15:04:20 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-21 15:04:21 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2019-08-21 15:04:21 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2019-08-21 15:04:21 UTC/bin/sh -c #(nop) COPY multi:320e0987ab3403a06f3f794891a29548fd4ce7ef42ae2c9e66603a55cd2c44fd in /usr/bin/
2019-08-21 15:04:22 UTC/bin/sh -c #(nop) COPY multi:a40defef61948d2e245c428db8db8bbef5784f8e3c63a3e4d87edbff5fec0040 in /opt/rke-tools/
2019-08-21 15:04:22 UTC/bin/sh -c #(nop) COPY file:ae088dc8aae75d75b911c9b77f453ed1aa8b21f62b42a407316360eb9b8d7e31 in /opt/rke-tools
2019-08-21 15:04:22 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2019-08-21 15:04:22 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2019-08-21 15:04:23 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2019-08-21T15:04:09Z
2019-08-21 15:04:23 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-21 15:04:23 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=fca0192d733e86b1b433ca6994e9e60aa10c8253
2019-08-21 15:04:24 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2019-08-21 15:18:32 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:50d21ff7a46bfd296486b616ee58977548a7d6cdb0d37b163e3e0cb15ccab31d - 31.54% (85.6 MB)
[#019] sha256:aeea543876a37f8c7b5bc80f0ab58b6616b65e66ff96ef938d967aef60d89da9 - 0.0% (1.5 KB)
[#020] sha256:e8e0df77c1a2d67b1db94dd450376ff0d64f137e6ac47f5b4a4c63fb64b7035b - 0.0% (1.34 KB)
[#021] sha256:8692284398723a0092d4af7a74629fa499ba809f83dcdf8a72b3ea3520bf10db - 0.0% (4.81 KB)
[#022] sha256:f0fcc682972ead430406decaa1f687974ca957e711d490651f850cbd9ae8b95c - 0.0% (5.47 KB)
[#023] sha256:6e9c32cb63725a4daa8c5cea9a4ae28274f428568fc48310e6334e166e0b656b - 0.0% (881 Bytes)
[#024] sha256:2388a689343e0ea6739a4d3968e2782caba823deca74bb8e13ebd2b2797c6e64 - 0.0% (827 Bytes)
[#025] sha256:21c7f5e4bf9bfceff75ad4ac472caae81e808a0390a1fec9a6761503f5dfed0c - 0.0% (830 Bytes)
[#026] sha256:ef06cc3159ba63fd08479962d6a8108188e4ba5a61a70a9dacc105fd212e457f - 0.0% (824 Bytes)
[#027] sha256:b9813f6a240205e1fb66af53fc414da658c668d1ec626de751b995744e9c67ae - 0.0% (830 Bytes)
[#028] sha256:1428d27f917b1dbb60957512fec21ab3d489166440828c4f1aa2ce8c7a87d000 - 0.0% (830 Bytes)
[#029] sha256:5eeb6c0fe467469f028f09fa3751963c90029a52ba47323a19aaf64a7389b2f4 - 0.0% (822 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-21 15:18:27 UTCcmd /S /C #(nop) COPY file:e45dca357f808e43ef9d07a5c0862c5794543c175061aaa682cd1267d19827a1 in \share\azure-cli.zip
2019-08-21 15:18:28 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2019-08-21 15:18:28 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2019-08-21 15:18:28 UTCcmd /S /C #(nop) COPY multi:d5c54ec42a18b58b88ab818a5d177fd9b4d077ea218bf147a01be3677835f9b1 in \usr\bin\
2019-08-21 15:18:29 UTCcmd /S /C #(nop) COPY multi:b2bce70b90b80533a58087caea0e952daf993fe97ee778df1314b8274109930e in \share\scripts\
2019-08-21 15:18:29 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2019-08-21 15:18:30 UTCcmd /S /C #(nop) VOLUME [c:/run]
2019-08-21 15:18:30 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2019-08-21 15:18:31 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2019-08-21T15:03:53Z
2019-08-21 15:18:31 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-21 15:18:31 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=fca0192d733e86b1b433ca6994e9e60aa10c8253
2019-08-21 15:18:32 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2019-08-21 15:27:05 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:b66bdba0d1a421487abbf48d9579d2ccb4929188d68cc974efe734b5f1f208ff - 0.0% (833 Bytes)
[#011] sha256:976ee32f7bb44e05423a06cb7cc164ee8c4cb6babc0a05fb5c1ad180ef6b928a - 0.01% (41.4 KB)
[#012] sha256:793e287529a45f899b8f1abe9a7bd4a30f9e07a351b4c3190c984763a9fdb6bb - 3.55% (9.7 MB)
[#013] sha256:4bbb4fd0cddd988146e0fcfdec11c78669f9585d07b38043197269a91d9be4da - 0.61% (1.66 MB)
[#014] sha256:a8c4bec851c80b0039f7168941510db955619a1a844d6efcd271a7f1941c4506 - 5.32% (14.5 MB)
[#015] sha256:7121f080673e6a5c42e016f3a209ae0b6e6e837c108cc38388f2ac679c4f7da5 - 3.03% (8.28 MB)
[#016] sha256:247692b0d75599c5028fdda92cf1385441fd75c7be056959a6bf051a85473fbe - 0.07% (205 KB)
[#017] sha256:c41a7338438771b334a2fde63ee13a9523f6704d2bcdecf003201117c1fc2ddd - 0.0% (8.04 KB)
[#018] sha256:fde6b5f8f48067c477ba0db77c60770f98df24a7b3db94057b8257fbd0217af0 - 31.29% (85.6 MB)
[#019] sha256:8ee4392c354975562c83f7d1e8d6c8a16c8620c67cbff4d59b6199b7f7d2d49c - 0.0% (1.46 KB)
[#020] sha256:c89d379cdcfd8acaf148cab39ce5189866d8d245db013035dc9123deeec0037b - 0.0% (1.41 KB)
[#021] sha256:5fb91be52b30fa50446e5bb361918b598e45677db574eaaddfe312603e7bd17d - 0.0% (4.82 KB)
[#022] sha256:fb646cf4d397343cbad55b62eb137c28e102d3665b5e4591f5ff10db511563b9 - 0.0% (5.49 KB)
[#023] sha256:09884441792d0e008c844329cbe50c140c06a4bb12b4c3ceada96b1b278a32c5 - 0.0% (833 Bytes)
[#024] sha256:97e6a6d528ee897abd0c298895f56af009e45497e9e2475fc4c1d9acd8a988da - 0.0% (895 Bytes)
[#025] sha256:95b65dceef7e33cd434ebcb7fccdcd5e0ac0c8a135f155415ed9089c7797ad8f - 0.0% (871 Bytes)
[#026] sha256:30a9d0447902ec40f89726bcf6ecdf9aef18f18913ecdf779bb5a1750c0d072f - 0.0% (845 Bytes)
[#027] sha256:2656901ff54a7037785003ef8bf43574227bf9286d74769d464c388e28fbcba1 - 0.0% (830 Bytes)
[#028] sha256:6d9bd46ec2bb1c4f9fe740d80904f7055fbae2ba2b4ebda022d4565f4b89e370 - 0.0% (833 Bytes)
[#029] sha256:72285719c5f943eb179d85762e7b818780dc065366b056c686a80cac8a975330 - 0.0% (874 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 15:26:49 UTCcmd /S /C #(nop) USER ContainerAdministrator
2019-08-21 15:26:50 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2019-08-21 15:26:53 UTCcmd /S /C #(nop) COPY multi:16dde92bdc7736db15d4e2ee9d58dfa2514cca9cb865261b79e803bbfc9d97b1 in \Windows\
2019-08-21 15:26:54 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2019-08-21 15:26:57 UTCcmd /S /C #(nop) COPY multi:e57c2c5b01f1d528a6dbf16cea656dd9c2c6d654dfc2516d54e675cc05cb4b98 in \opt\cni\bin\
2019-08-21 15:26:58 UTCcmd /S /C #(nop) COPY file:475865290df3a6cba84a566d32d877cbb41da32fb92dc040522e7ba42477e9b1 in \opt\bin\
2019-08-21 15:26:59 UTCcmd /S /C #(nop) COPY dir:fb4dce9f658bcb0ff4c11527e4071d2b41a05f9f51fa6dee8922ac79357a7b52 in \share\kubelet-volumeplugins
2019-08-21 15:26:59 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2019-08-21 15:27:01 UTCcmd /S /C #(nop) COPY file:9be2a6f3b54d3ed274f15a50c603439238de2f98db6e90f9c691dd185df684d1 in \share\azure-cli.zip
2019-08-21 15:27:01 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2019-08-21 15:27:02 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2019-08-21 15:27:02 UTCcmd /S /C #(nop) COPY multi:d5c54ec42a18b58b88ab818a5d177fd9b4d077ea218bf147a01be3677835f9b1 in \usr\bin\
2019-08-21 15:27:03 UTCcmd /S /C #(nop) COPY multi:b2bce70b90b80533a58087caea0e952daf993fe97ee778df1314b8274109930e in \share\scripts\
2019-08-21 15:27:03 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2019-08-21 15:27:03 UTCcmd /S /C #(nop) VOLUME [c:/run]
2019-08-21 15:27:04 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2019-08-21 15:27:04 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2019-08-21T15:04:36Z
2019-08-21 15:27:04 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-21 15:27:05 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=fca0192d733e86b1b433ca6994e9e60aa10c8253
2019-08-21 15:27:05 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2019-08-21 15:04:37 UTC
43.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 - 5.89% (2.56 MB)
[#001] sha256:9af333ee6136727de78e785c6d6d6aba9ae74a102edb8a343ddb8d635a5755d6 - 12.58% (5.48 MB)
[#002] sha256:e8e7513fd8a89cec391fd15ecbc8b79eedfafdf457316dcaaac4803e84890950 - 1.35% (601 KB)
[#003] sha256:95df75ee5d25be4e1a7cf5aae9af563ba4c39a269a333d02ff35827bd5159ce0 - 23.37% (10.2 MB)
[#004] sha256:6514dc25cae02a1a026f1dd99935089ad47b83fde5521a4c6e8ab229c9f6beb5 - 0.0% (161 Bytes)
[#005] sha256:6e638f65f7b8c125d0bdc88d200f36c1c31292f0a770e9f8be1f491b83438bd6 - 35.48% (15.4 MB)
[#006] sha256:cc07f666322b1bbece2dafb0ff1fd0ef5b1946fd2cd6a5d6adc8063c354067d9 - 3.56% (1.55 MB)
[#007] sha256:1faccca032586ba9f48beb57d50cca05799a6dc9a0992bd1f10efe8d3fbec1af - 10.59% (4.61 MB)
[#008] sha256:7c4e475e84c718cfe787f1176b3ca6d01d05c1a985cf080996f8af3237058862 - 0.0% (441 Bytes)
[#009] sha256:abce7f0e3579257c14f8969a93b16276e56e3af8dc0590656a4db6bc452c20e8 - 0.0% (275 Bytes)
[#010] sha256:0fa9b717c71008d9f20bd2ff9b28ef3fc027c5e093f98b96636d9044b8bbe14a - 0.0% (748 Bytes)
[#011] sha256:57956bdb50aea7cbf9fa0f45f0c259d87c30dc9a5baeb3877c194a240c033c67 - 0.0% (2.22 KB)
[#012] sha256:49596ca5b9f0d7fb5f88a4fe17f1fd5614fe0d6dde0f0d812f5e6d17e92091e9 - 7.17% (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-21 15:04:20 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2019-08-21 15:04:20 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2019-08-21 15:04:20 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-21 15:04:21 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-21 15:04:25 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-21 15:04:26 UTC|1 ARCH=arm64 /bin/sh -c mkdir -p /opt/cni/bin
2019-08-21 15:04:29 UTC|1 ARCH=arm64 /bin/sh -c wget -q -O - https://github.com/containernetworking/cni/releases/download/v0.4.0/cni-amd64-v0.4.0.tgz | tar xzf - -C /tmp
2019-08-21 15:04:31 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-21 15:04:31 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-21 15:04:33 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-21 15:04:33 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2019-08-21 15:04:33 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2019-08-21 15:04:34 UTC/bin/sh -c #(nop) COPY multi:320e0987ab3403a06f3f794891a29548fd4ce7ef42ae2c9e66603a55cd2c44fd in /usr/bin/
2019-08-21 15:04:34 UTC/bin/sh -c #(nop) COPY multi:a40defef61948d2e245c428db8db8bbef5784f8e3c63a3e4d87edbff5fec0040 in /opt/rke-tools/
2019-08-21 15:04:34 UTC/bin/sh -c #(nop) COPY file:e8b4ebc110fc299dede16d05b7951fb10ad1b0e141597981def327599f17e9a3 in /opt/rke-tools
2019-08-21 15:04:35 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2019-08-21 15:04:35 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2019-08-21 15:04:36 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2019-08-21T15:04:17Z
2019-08-21 15:04:36 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2019-08-21 15:04:36 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=fca0192d733e86b1b433ca6994e9e60aa10c8253
2019-08-21 15:04:37 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.