2020-12-02 20:31:08 UTC
59 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.4
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE2
[#000] sha256:cbdbe7a5bc2a134ca8ec91be58565ec07d037386d1f1d8385412d224deafca08 - 4.55% (2.68 MB)
[#001] sha256:6461dd5d0077731b7c7e47bc6a8b15b8864eb541dc11aa2ab0cdffdf28d59245 - 10.78% (6.36 MB)
[#002] sha256:70e031ddac33a966ad2ee30d916c2843caefd5e5f26f0a351640c5ce8dca4d5d - 0.0% (601 Bytes)
[#003] sha256:656e57b81606e92f3e00e76f9c96f7f140ee0d4cc1271427644cc06cf40f0597 - 0.0% (903 Bytes)
[#004] sha256:028906aee9a52a7cc2561aa712084584524a1e09e70d44e8c2acfb320e74ced5 - 0.0% (665 Bytes)
[#005] sha256:61e00a91fb5b2a1d2980c10e03c5b7abdc60804214a0d2e120a0b0f8091305b7 - 0.95% (572 KB)
[#006] sha256:19e1817a3ef700ff578d9a58dd59b32dc8b1c1f3b1df456c51d2b9b222e404b7 - 39.9% (23.6 MB)
[#007] sha256:e2a9d59f059fb1e7e5e310dc93ffe03d8046ea7f921dc973a3d61fce7716b8da - 0.0% (160 Bytes)
[#008] sha256:a17a6af4d0452c2fe8ccaa7d85bd4a239bac5cbd377f0627d2f8ccbdc2d43327 - 26.16% (15.4 MB)
[#009] sha256:4639a959c29cfec723594a01f2b65079e5bdf2c8d1463be0b459035b9c1a009b - 2.82% (1.67 MB)
[#010] sha256:69ec85a59007a85112717e61582246c507094159d6f494ed84ab0b42a42a0e77 - 8.24% (4.87 MB)
[#011] sha256:a1de24e90a496c4dea38448ba0b0a8c28f6eaaed12664e0b761df9d02e6c0ebc - 0.0% (442 Bytes)
[#012] sha256:f1b198674db3d3b5768de6992c38468c61df4cfba42882cbb077884de6d5d888 - 0.0% (275 Bytes)
[#013] sha256:4ef34f19b6f851fc61a4ecca67bdc1ac862ad85a1aecab3aa330dd658af2fb28 - 0.0% (898 Bytes)
[#014] sha256:77a01a7645cbc06be19f903b92b012c996a368819cb6302d0c00d532f3ad3807 - 0.0% (2.6 KB)
[#015] sha256:44dd7ade563491bd41e86165e163769096c04f0f7cba8f43e6d68e7468b4ea24 - 6.59% (3.89 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-10-05 22:46:52 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2020-11-25 00:32:15 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2020-11-25 00:32:20 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 ${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make all && apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz " && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi && apk add --no-cache --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del .gettext && mv /tmp/envsubst /usr/local/bin/ && apk add --no-cache tzdata && apk add --no-cache curl ca-certificates && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d
2020-11-25 00:32:20 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2020-11-25 00:32:21 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2020-11-25 00:32:21 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2020-11-25 00:32:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2020-11-25 00:32:21 UTC/bin/sh -c #(nop) EXPOSE 80
2020-11-25 00:32:21 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2020-11-25 00:32:22 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2020-12-02 20:30:53 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2020-12-02 20:30:53 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2020-12-02 20:30:54 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-12-02 20:30:55 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2020-12-02 20:30:59 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 && curl -sLf https://storage.googleapis.com/kubernetes-release/release/v1.18.2/bin/linux/${ARCH}/kubectl > /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && apk del curl
2020-12-02 20:30:59 UTC|1 ARCH=amd64 /bin/sh -c mkdir -p /opt/cni/bin
2020-12-02 20:31:02 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-12-02 20:31:03 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-12-02 20:31:03 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-12-02 20:31:04 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-12-02 20:31:05 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2020-12-02 20:31:05 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2020-12-02 20:31:05 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2020-12-02 20:31:06 UTC/bin/sh -c #(nop) COPY multi:dabcc45c4ad8e3a76654f30c4699a681bbd80ba6774fba99b61a84b7b8281c59 in /opt/rke-tools/
2020-12-02 20:31:06 UTC/bin/sh -c #(nop) COPY file:e57b9bc4136c9675dbf1bbe2991535a5fc94a62226bc7370913557b0abf5058c in /opt/rke-tools
2020-12-02 20:31:06 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2020-12-02 20:31:07 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2020-12-02 20:31:07 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2020-12-02T20:30:51Z
2020-12-02 20:31:07 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2020-12-02 20:31:07 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=220e0cdd9402362c480cec700e1bf5450a3ff7cf
2020-12-02 20:31:08 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-12-02 20:32:15 UTC
237 MB
PSDocker-NanoServer-1809
POWERSHELL_TELEMETRY_OPTOUT0
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePathC:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:f1b217fe8837d4d85cb8228a52344d3504d7aa51ba30167a20a6a4cb80cdcaa0 - 40.69% (96.6 MB)
[#001] sha256:dd0149df3535394c93938df47cd3fedd6eb3c19a8c47645e6eaf0f045108bd85 - 0.0% (838 Bytes)
[#002] sha256:7221ea9f1579ce5c3b2b97e5e92a2734dea36d5e5c88c45cbb71379f509e6933 - 0.0% (889 Bytes)
[#003] sha256:dab34810f9b3da0e0a4d03603800b863f333d155955c359486ad716f22b65222 - 0.03% (64.3 KB)
[#004] sha256:3fb8fc2e42bca27a183e3ec524d9acb96d1036c151100f8a60f462896eabdbc6 - 0.0% (842 Bytes)
[#005] sha256:17af3eb649db638224c71f9d1fbf0202e448188e59d5b79be89b498320f9f421 - 40.86% (97 MB)
[#006] sha256:62396da4f71e78b7854188a0cfcf21a9541d904b6e3b7a77aa13c908a1acf2e3 - 0.05% (124 KB)
[#007] sha256:37e66a8a8e4a736e6db187c640be484466b99733056e2fbad60737d9cf6a0b0e - 0.0% (837 Bytes)
[#008] sha256:d9ce0307418bda1995c1f3ac53701a2fbc11ed080238577cb953fc1b6b8045a4 - 0.0% (830 Bytes)
[#009] sha256:d6cd0fdd7f6a2598a3601b0f98817c5225b0afdcafff30cd92617ec9160c43cb - 0.0% (832 Bytes)
[#010] sha256:d75017207ad64c24f50a8751872375141d76cbbdb6d6c4408af684b7fda2075b - 0.02% (41.4 KB)
[#011] sha256:25ec5371d9b7646af2ae4db60aa4717ce8a9aed45d214ca75cb98b0836dec3bf - 4.16% (9.88 MB)
[#012] sha256:9e05c61d0fb421e77b2930e31e74d8e6f9d8ac3b3e5fd40aefbaf7b57215ff62 - 0.7% (1.66 MB)
[#013] sha256:3292a9b429a0b4b4758c3a50cec49a9c54b9bf990ae1a1c3396c5a597019bccc - 7.0% (16.6 MB)
[#014] sha256:e6d390f89e4b8eb41ae3f333347fe050cd7aed5b8eec2963d9ebff0eccce2b70 - 6.39% (15.2 MB)
[#015] sha256:2360d921c266a171665982bbf219791d0595c78a21c6f39b13dc1d4a87411e7e - 0.09% (209 KB)
[#016] sha256:713909a1f38925f86e04c6c363ad0007c6a34d8a3a7705b30d7dc98f453d4aff - 0.0% (8.07 KB)
[#017] sha256:7fb974244e152607bb62a917d27a3651fed422e1806227f4bb60b7c5d52d8ce2 - 0.0% (1.53 KB)
[#018] sha256:5e1ff0d439368d1906e5908237347fc05da1fb8a2868b535fbe76ef05db60822 - 0.0% (1.34 KB)
[#019] sha256:ea5bfe0b6e2a20534b7f27a56d73138f33cb7cf47d0e4fd4477901fd25ea3443 - 0.0% (7.63 KB)
[#020] sha256:b785fed4b1cd5f7bc733f1c8e326e08f47223a1036858f75fa61f99850067393 - 0.0% (6.68 KB)
[#021] sha256:54062b61fa45a1d628c7198337e2b42df47b10e75467aa1edcf49b399ffaeb63 - 0.0% (828 Bytes)
[#022] sha256:cc0aa58b6937ecfcf56d0f686cfbed99967a96fe57b47de4b45a0329d543fe1e - 0.0% (850 Bytes)
[#023] sha256:ef44802f823389c4a0a6e983b363f4f7cb0069175f455af3b5dc7ecb8be7827e - 0.0% (831 Bytes)
[#024] sha256:419e38cb9ab45ba764ee3ca79650c30c05995f28eb05c4ce9baa39b0bd2ec5b3 - 0.0% (827 Bytes)
[#025] sha256:eae0a49ec4bb556624adb52b913b05662bb7ec475f92e9ee25aeb2a8ff16f6c7 - 0.0% (849 Bytes)
[#026] sha256:ec51970596c6749ee29b640549998d65392a1558e9b4dd8fbd283ccc066fd8b3 - 0.0% (832 Bytes)
[#027] sha256:124991f19047e6cf798e3b1e5f48d7b4c0c1554bcdcccbe10435ab46cc2071bd - 0.0% (883 Bytes)
Apply image 1809-amd64
2020-11-16 17:54:21 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files PSModuleAnalysisCachePath=C:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1809
2020-11-16 17:54:22 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-11-16 17:55:19 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-11-16 17:55:19 UTCcmd /S /C #(nop) USER ContainerUser
2020-11-16 17:55:55 UTCcmd /S /C #(nop) COPY dir:b7d603d3d1dc6eb42b16e4fb4b3aa3e67b31f78165f808c7221eb79966e50f68 in C:\Program Files\PowerShell
2020-11-16 17:56:39 UTCcmd /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-11-16 17:56:40 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2020-11-16 17:56:41 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2020-11-30 16:53:40 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-12-02 20:32:07 UTCcmd /S /C #(nop) COPY file:7c80292bbdacca850f1c78ac775579f109a75cbe9ac1bb97343dd4ce682a68b3 in \Windows\System32\
2020-12-02 20:32:08 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2020-12-02 20:32:08 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2020-12-02 20:32:09 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2020-12-02 20:32:10 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2020-12-02 20:32:11 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2020-12-02 20:32:12 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2020-12-02 20:32:12 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2020-12-02 20:32:12 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2020-12-02 20:32:13 UTCcmd /S /C #(nop) COPY multi:42291a7f77829530b4a7f91daf9a5b4d05d3ff8f14a283c4ddf07e46ee700392 in \usr\bin\
2020-12-02 20:32:13 UTCcmd /S /C #(nop) COPY multi:e3db1b0e948316f4edefac68b24359a579f73b4fe90a45382ae728be4ccb830e in \share\scripts\
2020-12-02 20:32:13 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2020-12-02 20:32:14 UTCcmd /S /C #(nop) VOLUME [c:/run]
2020-12-02 20:32:14 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2020-12-02 20:32:14 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2020-12-02T20:30:50Z
2020-12-02 20:32:15 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2020-12-02 20:32:15 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=220e0cdd9402362c480cec700e1bf5450a3ff7cf
2020-12-02 20:32:15 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-12-02 20:32:23 UTC
239 MB
PSDocker-NanoServer-1909
POWERSHELL_TELEMETRY_OPTOUT0
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePathC:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:f5b1236b12ef101b472427bd3ef94193f55a4b6776b53bbf636d439634a5d6f6 - 41.07% (98.1 MB)
[#001] sha256:596a6c70e38f04b7b3d29be41ce3699580a27800f668da6855a76799a87e9634 - 0.0% (828 Bytes)
[#002] sha256:b27ca61689320e41a227b945470bb42688beaccbd784afc2065717ebede8740c - 0.0% (836 Bytes)
[#003] sha256:e53e5d9af7061afd2db83e8a4be781a71b3111cd4b28d370ef740309bd2d6ccd - 0.03% (64.9 KB)
[#004] sha256:ca27c462edbeace979e649ce0fee35d17fea532629f0a7862e13c4bd292f1c9e - 0.0% (840 Bytes)
[#005] sha256:2bcc6b22e07fc6a15bd15745f83ee030aa6edbc9cd1860a03402c1294352bc80 - 40.6% (97 MB)
[#006] sha256:f497d9ff38c7b7f4f9020bafe37e91a6737fcea4ad74546aa15c0e8e8214a664 - 0.05% (124 KB)
[#007] sha256:efb4e8ac9fa17b9c8b41aa8b2eddacef04caa91407df2ba63260fc31e8208175 - 0.0% (842 Bytes)
[#008] sha256:3797a9ab02cdd0d8a5e1cfd0616234feea8f1b9f5a80e30367b3aa97308c8c23 - 0.0% (838 Bytes)
[#009] sha256:da0837efad5d77f86f8c0b0ddf35509968930212debd563ec1e90a7be7ca3634 - 0.0% (827 Bytes)
[#010] sha256:bd0a43a09d47ef4953cfb65e0501c0a9e8ea2362331b0ae9df761aa4ea279a6c - 0.02% (41.4 KB)
[#011] sha256:39038dff2a1be7dc5f686825832cbe1ec7a0ec229894b68ec9d9b78965170694 - 4.13% (9.88 MB)
[#012] sha256:d8581bed3748fa430937fe18eef21dbabdbf0ffbe36ef144050d6ce6799656a9 - 0.69% (1.66 MB)
[#013] sha256:adb06d03a5164598c50be8da1023207141c943329541981e781f7a3f82b4c762 - 6.96% (16.6 MB)
[#014] sha256:3d7b74acc4976dedfbecfaf443b516ffce5d322e3a289af7b746a33c7b137038 - 6.35% (15.2 MB)
[#015] sha256:d5d487a737d86635f71296d722eb122597d0dbd35615cf9af58088e22890c7e7 - 0.09% (209 KB)
[#016] sha256:2facf80ce77aed77bfcec0c1f90e7f6f7179cee85630b6205398c126f17400f4 - 0.0% (8.06 KB)
[#017] sha256:43f14ea54ccb4a163bf8e876696830cd97c2125448543178a305cde3ac9c74b1 - 0.0% (1.49 KB)
[#018] sha256:72b77a0cc21ef692fa60cc810e363131c2bfff71e96a00a732156fc1fd23a623 - 0.0% (1.34 KB)
[#019] sha256:8e99309031b21caa69f1266518c2db7fdeaac6200b891078f8e5f2d5e0f003b0 - 0.0% (7.66 KB)
[#020] sha256:0426199dd77a7df6b03fd6cbb1e91d504d9861f2a285646218214c3fd62f27ba - 0.0% (6.68 KB)
[#021] sha256:765c1a24f76c419eb27e8ceaa48f6ac189e30c0809d60bec4f6941ea31dbe0aa - 0.0% (858 Bytes)
[#022] sha256:9959a7336c4b4bffa960953639ca2b22344adeb127e85fadbe44f13375e9c765 - 0.0% (835 Bytes)
[#023] sha256:8acbaeb18ca17a4932c513494e67dac95f8f355b587a24fc172299e465a5a6d1 - 0.0% (834 Bytes)
[#024] sha256:5283dda268da37134dec81f3a40e75f16ea102d6131f529260b9ced36312d526 - 0.0% (827 Bytes)
[#025] sha256:d31b6767660899e7386f722766bc1f3687df0307f020732843ccd066f6a2109f - 0.0% (830 Bytes)
[#026] sha256:a8ea133b595cf211a0cd7c04095b3d6504df83a251251332eadf74501673f88c - 0.0% (852 Bytes)
[#027] sha256:1928de1ccba4e58486bf0615918d7ee1373aafb85e47d268d24870b1b8d7c091 - 0.0% (836 Bytes)
Apply image 1909-amd64
2020-11-16 18:01:04 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files PSModuleAnalysisCachePath=C:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1909
2020-11-16 18:01:05 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-11-16 18:02:04 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-11-16 18:02:04 UTCcmd /S /C #(nop) USER ContainerUser
2020-11-16 18:02:29 UTCcmd /S /C #(nop) COPY dir:b7d603d3d1dc6eb42b16e4fb4b3aa3e67b31f78165f808c7221eb79966e50f68 in C:\Program Files\PowerShell
2020-11-16 18:03:09 UTCcmd /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-11-16 18:03:09 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2020-11-16 18:03:10 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2020-11-30 16:56:43 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-12-02 20:32:15 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2020-12-02 20:32:16 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2020-12-02 20:32:16 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2020-12-02 20:32:17 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2020-12-02 20:32:19 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2020-12-02 20:32:19 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2020-12-02 20:32:20 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2020-12-02 20:32:20 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2020-12-02 20:32:20 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2020-12-02 20:32:21 UTCcmd /S /C #(nop) COPY multi:42291a7f77829530b4a7f91daf9a5b4d05d3ff8f14a283c4ddf07e46ee700392 in \usr\bin\
2020-12-02 20:32:21 UTCcmd /S /C #(nop) COPY multi:e3db1b0e948316f4edefac68b24359a579f73b4fe90a45382ae728be4ccb830e in \share\scripts\
2020-12-02 20:32:21 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2020-12-02 20:32:22 UTCcmd /S /C #(nop) VOLUME [c:/run]
2020-12-02 20:32:22 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2020-12-02 20:32:22 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2020-12-02T20:30:36Z
2020-12-02 20:32:23 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2020-12-02 20:32:23 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=220e0cdd9402362c480cec700e1bf5450a3ff7cf
2020-12-02 20:32:23 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-12-02 20:32:19 UTC
239 MB
PSDocker-NanoServer-1903
POWERSHELL_TELEMETRY_OPTOUT0
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePathC:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:4ec0bf6d2169a853d72537350c3d4940d69d5e8b48cc07a43aa7da3c316a5f20 - 41.1% (98.2 MB)
[#001] sha256:63ccca5bdd5d4484a567529badadad531c7c2651c625d9dfdb366724ca344789 - 0.0% (837 Bytes)
[#002] sha256:d2a12e677d333b8f918ce603e76c2c222ec444da27d7b5d7d3346c3290dbed04 - 0.0% (890 Bytes)
[#003] sha256:55356f177afb2ec9e055647145f67c19a4327138b88ce1d281dae5dc04d87c5d - 0.03% (65.3 KB)
[#004] sha256:19ce1e4fadd2bcb792c3e1c501873b7757779f3a08c3ee322ce82641b7088b81 - 0.0% (836 Bytes)
[#005] sha256:571266b7d13374df2ce0ad3c14627212976b0b540427200b8e722a5c4419d771 - 40.58% (97 MB)
[#006] sha256:5a90104263c352ea4c7b444757ecd5a8a2d55cf4f93590ace68dee9ee5322bf6 - 0.05% (125 KB)
[#007] sha256:7a7dcb603c0e2ac31386b83bc9b3ce7f8be4d87526b37d5bfe6a37ebda4e86a1 - 0.0% (835 Bytes)
[#008] sha256:691ae0f9cf235b7bc559803d3faae9f16dcd09722bfe71b04ce837d77ae6f5e2 - 0.0% (838 Bytes)
[#009] sha256:5dd4c6d5a62acab00e7e98520131b9bd8511cf600d54be60908441d5c3b65ce4 - 0.0% (846 Bytes)
[#010] sha256:aabe61b2cb43d29f5977116167bda3a9afad564198a4ebd08ee20a8717d1840e - 0.02% (41.4 KB)
[#011] sha256:6745e42a0574db95ab768d3a26fb218d7d912e68177dfba7ea324bea51496b96 - 4.13% (9.88 MB)
[#012] sha256:327cbda18072bead53e9551eabe1db76a299aedbc2b6be5619e1bd9db94f855e - 0.69% (1.66 MB)
[#013] sha256:946dd1f5f782e929edd8c73c040c95cf99d967d3ea26ec52ec87131b8748d9ff - 6.96% (16.6 MB)
[#014] sha256:ad054a0ba6ea0c68a675207e5e2824ca8a092daab0bf7c920211648f805d60c7 - 6.35% (15.2 MB)
[#015] sha256:0322cda50f943ef8ee3436ef633f366b082f6e8097fa89f20191d1f602089a10 - 0.09% (209 KB)
[#016] sha256:684e73e3052b265bba41e593e87e072439490f63ae9a5649907b04c7d8244426 - 0.0% (8.1 KB)
[#017] sha256:6327c91dd2da0e3fc46d4ca12a9753626c4a0cd8d7893e14aee11d0060fa5088 - 0.0% (1.47 KB)
[#018] sha256:524d9d39945004fca9a86a5c775f6586bf487f9142dff033998dbcefc55daf10 - 0.0% (1.33 KB)
[#019] sha256:75e3aae0884b5431fedd1ee7adf5885a21f2e705cc43182154779787848e384d - 0.0% (7.64 KB)
[#020] sha256:e9baebd96ade018e11f1869ad588966cbb2428ea3aebed939b010b51cd98195a - 0.0% (6.68 KB)
[#021] sha256:65b32ebd2c209eecb3aef7b511c53b493e5fd3a280c91bfa1f177b2d7347b48c - 0.0% (855 Bytes)
[#022] sha256:0781b32ade98872721c12b7676295789d77ab36089329efa428c7a5f808b7ed6 - 0.0% (853 Bytes)
[#023] sha256:7e6c528a99d315d75318ea80e143e1d302ac25e675f8f481960c44c93bd8dc8e - 0.0% (832 Bytes)
[#024] sha256:776f3f7fb8b631c94e2a9943bd71c82a7d65c750ff7bf297ae5083147c15ea28 - 0.0% (835 Bytes)
[#025] sha256:934f90ac003b7581689acf35c7934ebb7c97c61fae4e37efd871f3b0b89a1c42 - 0.0% (860 Bytes)
[#026] sha256:1a0231cc59c6c04f84687b65c968d09ee9cd8717e8f90a210b9df0c740133e21 - 0.0% (830 Bytes)
[#027] sha256:bd75d6ba0fd75fe5a78f5c60ef3249478110fa174e727ca7ba1db534b4acbc18 - 0.0% (829 Bytes)
Apply image 1903-amd64
2020-11-16 18:14:40 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files PSModuleAnalysisCachePath=C:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1903
2020-11-16 18:14:41 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-11-16 18:15:50 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-11-16 18:15:52 UTCcmd /S /C #(nop) USER ContainerUser
2020-11-16 18:16:20 UTCcmd /S /C #(nop) COPY dir:b7d603d3d1dc6eb42b16e4fb4b3aa3e67b31f78165f808c7221eb79966e50f68 in C:\Program Files\PowerShell
2020-11-16 18:17:00 UTCcmd /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-11-16 18:17:01 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2020-11-16 18:17:02 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2020-11-30 16:58:48 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-12-02 20:32:10 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2020-12-02 20:32:11 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2020-12-02 20:32:12 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2020-12-02 20:32:13 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2020-12-02 20:32:14 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2020-12-02 20:32:15 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2020-12-02 20:32:15 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2020-12-02 20:32:16 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2020-12-02 20:32:16 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2020-12-02 20:32:17 UTCcmd /S /C #(nop) COPY multi:42291a7f77829530b4a7f91daf9a5b4d05d3ff8f14a283c4ddf07e46ee700392 in \usr\bin\
2020-12-02 20:32:17 UTCcmd /S /C #(nop) COPY multi:e3db1b0e948316f4edefac68b24359a579f73b4fe90a45382ae728be4ccb830e in \share\scripts\
2020-12-02 20:32:17 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2020-12-02 20:32:18 UTCcmd /S /C #(nop) VOLUME [c:/run]
2020-12-02 20:32:18 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2020-12-02 20:32:18 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2020-12-02T20:30:33Z
2020-12-02 20:32:19 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2020-12-02 20:32:19 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=220e0cdd9402362c480cec700e1bf5450a3ff7cf
2020-12-02 20:32:19 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2020-12-02 20:31:19 UTC
55.3 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.4
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE2
[#000] sha256:29e5d40040c18c692ed73df24511071725b74956ca1a61fe6056a651d86a13bd - 4.7% (2.6 MB)
[#001] sha256:e910d27bcc9dd1ac9f2a5486b3d035ad35dd87a1503f0bdd409aae8dc5600f5f - 12.08% (6.69 MB)
[#002] sha256:bae236fb9b689d731de9e2e25ef8425889fa09434b4e165be7b3ed9139115db6 - 0.0% (600 Bytes)
[#003] sha256:060287ff627f51cf6c9c96e85c3bbdbb61c2bc50dafe8ea4a8fc61585600db12 - 0.0% (904 Bytes)
[#004] sha256:553a996aaa18dfc2e6520e8e9d909f49509e20e9ba46b1e29ec11e7c49fff0ae - 0.0% (667 Bytes)
[#005] sha256:86de5ad3904afee6507b06e3e932a33ce81bf1d492ca159ace6b9008fec54720 - 1.03% (583 KB)
[#006] sha256:0eb5260f89c0b72e82d9d1bd552eca8bbe9ef7ae99b604075d90f20ffb006a64 - 38.69% (21.4 MB)
[#007] sha256:78f13500aa92dff16debc7270d1046a19cfe60f92652938fb89e4ecb06402a50 - 0.0% (161 Bytes)
[#008] sha256:a7895bf2e399736e577203857289db0707fd07747187223be997ac0ba7c68aba - 26.01% (14.4 MB)
[#009] sha256:7724645d4700694a00edeeab6b5ab0b552152a17de889b53bef75f7ce9d57fd4 - 2.8% (1.55 MB)
[#010] sha256:89e2fab2558a2362b005d2421d7bef111258bafdcdfc08ae274331cbb7eb76e8 - 8.24% (4.56 MB)
[#011] sha256:88a6419eb94516463ba01f0e3996b67475581f923a3b57f20255e2693c23bea3 - 0.0% (440 Bytes)
[#012] sha256:36d2cb7c609d54fb2d22200bbb18aea136ed1dda51638e037bfe4322dba06847 - 0.0% (274 Bytes)
[#013] sha256:196529dd63ebed3fd5be7e90d641c2b768c38c78226053175dae82c402d1a3cc - 0.0% (898 Bytes)
[#014] sha256:fa3f136dcef8f4e56d64a091a3c4e64e8f4ea7806b7630bf2807fe98daf2ef84 - 0.0% (2.6 KB)
[#015] sha256:1c65b7289d9a5884666a698f7953f45934cbe0747e92713bd6131e60e2aa8275 - 6.44% (3.56 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-10-05 20:30:34 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2020-11-25 02:56:53 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2020-11-25 03:01:23 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 ${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make all && apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz " && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi && apk add --no-cache --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del .gettext && mv /tmp/envsubst /usr/local/bin/ && apk add --no-cache tzdata && apk add --no-cache curl ca-certificates && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d
2020-11-25 03:01:24 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2020-11-25 03:01:25 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2020-11-25 03:01:26 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2020-11-25 03:01:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2020-11-25 03:01:29 UTC/bin/sh -c #(nop) EXPOSE 80
2020-11-25 03:01:29 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2020-11-25 03:01:30 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2020-12-02 20:31:05 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2020-12-02 20:31:05 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2020-12-02 20:31:05 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-12-02 20:31:07 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2020-12-02 20:31:10 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 && curl -sLf https://storage.googleapis.com/kubernetes-release/release/v1.18.2/bin/linux/${ARCH}/kubectl > /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && apk del curl
2020-12-02 20:31:11 UTC|1 ARCH=arm64 /bin/sh -c mkdir -p /opt/cni/bin
2020-12-02 20:31:13 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-12-02 20:31:14 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-12-02 20:31: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_arm64
2020-12-02 20:31:16 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-12-02 20:31:16 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2020-12-02 20:31:17 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2020-12-02 20:31:17 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2020-12-02 20:31:17 UTC/bin/sh -c #(nop) COPY multi:dabcc45c4ad8e3a76654f30c4699a681bbd80ba6774fba99b61a84b7b8281c59 in /opt/rke-tools/
2020-12-02 20:31:18 UTC/bin/sh -c #(nop) COPY file:0d5292d619d8aec0ef2ae78e1603b7b31edac30e9fe01b0f542c877f0a9cd9e9 in /opt/rke-tools
2020-12-02 20:31:18 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2020-12-02 20:31:18 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2020-12-02 20:31:18 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2020-12-02T20:31:03Z
2020-12-02 20:31:19 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2020-12-02 20:31:19 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=220e0cdd9402362c480cec700e1bf5450a3ff7cf
2020-12-02 20:31:19 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.