2021-01-13 17:01:52 UTC
60.5 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
RANCHER_CONFD_VERSIONv0.16.2
[#000] sha256:0a6724ff3fcd51338afdfdc2b1d4ffd04569818e31efad957213d67c29b45101 - 4.43% (2.68 MB)
[#001] sha256:1d7c87af3754e013926df5f8c24c6e1d92fcfa130c6ae4c449d8b45ffbd53716 - 10.51% (6.36 MB)
[#002] sha256:9668ffa91d191714d32e557901d943cf6cc64258af0481c9dad547a91864360b - 0.0% (601 Bytes)
[#003] sha256:e81a2f5037c186da901fedacae6bd2496935c82c491703948fb8642818c2b09c - 0.0% (902 Bytes)
[#004] sha256:991b5ddb4d9ebcd5cef1a4e09983b3d1b02289c142974d399e798cf4dda9a501 - 0.0% (665 Bytes)
[#005] sha256:6cda151b93fd26b795ac88e9d2cbe47d7b7c582eeff98ebb61b44fedbc5bf27e - 0.92% (572 KB)
[#006] sha256:c68d1b9167a7d3e16808727f51f282cc2f1481e46200d21bd7567579a5565e2d - 41.4% (25.1 MB)
[#007] sha256:bbb42d7eabd9709d5b582d34dfbc37570e140b6baf81289488a635b65d511728 - 0.0% (159 Bytes)
[#008] sha256:bd713c29f41612f99722370ecbaec4853845ed574173ef91350e726c00bd8c08 - 25.51% (15.4 MB)
[#009] sha256:df5afa52f60d40174147b853a0a38f4ea9181ba47cedcdd6018c055e0608b5aa - 2.75% (1.67 MB)
[#010] sha256:d0d39ff39ba7e64a3546e7994973b6c9436ed4fdf73321d4981b8cd2311aeb3a - 8.04% (4.87 MB)
[#011] sha256:cc37f26f9583bc0a6584354037964b410b986e0df7b311073af2299538d5afa5 - 0.0% (441 Bytes)
[#012] sha256:bea8579e527dedafe5873e8c95aae74a8026fdfb1469d1ef5b034af7eb518b32 - 0.0% (275 Bytes)
[#013] sha256:b831b3bcbda4a1cd6d2c5bbd3242a05c5388cd85787a0868b17edae5aef95922 - 0.0% (898 Bytes)
[#014] sha256:d6d1055e1039ff0979bbaca7f8cf2b66fa0c0a51d77d9f2b1ddc609c7abeca6d - 0.0% (2.6 KB)
[#015] sha256:274a8041f9921aa8cdb7107cdcce5d754b071aadd9ab4abf92979e665d731ecb - 6.43% (3.89 MB)
/bin/sh -c #(nop) ADD file:8ed80010e443da19d72546bcee9a35e0a8d244c72052b1994610bf5939d479c2 in /
2020-12-17 00:19:49 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-12-17 15:01:37 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2020-12-17 15:01:37 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2020-12-17 15:01:38 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2020-12-17 15:01:38 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2020-12-17 15:01:43 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-12-17 15:01:43 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2020-12-17 15:01:43 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2020-12-17 15:01:43 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2020-12-17 15:01:44 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2020-12-17 15:01:44 UTC/bin/sh -c #(nop) EXPOSE 80
2020-12-17 15:01:44 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2020-12-17 15:01:44 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2021-01-13 17:01:34 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2021-01-13 17:01:34 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2021-01-13 17:01:35 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
2021-01-13 17:01:36 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2021-01-13 17:01:37 UTC/bin/sh -c #(nop) ENV RANCHER_CONFD_VERSION=v0.16.2
2021-01-13 17:01:43 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/rancher/confd/releases/download/${RANCHER_CONFD_VERSION}/confd-${RANCHER_CONFD_VERSION}-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
2021-01-13 17:01:44 UTC|1 ARCH=amd64 /bin/sh -c mkdir -p /opt/cni/bin
2021-01-13 17:01:46 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
2021-01-13 17:01:47 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}
2021-01-13 17:01:48 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
2021-01-13 17:01:49 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
2021-01-13 17:01:49 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2021-01-13 17:01:50 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2021-01-13 17:01:50 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2021-01-13 17:01:50 UTC/bin/sh -c #(nop) COPY multi:2102a27cd168d4803579f65af8ae6f63fbcbd2569b4c76ea5107fa8570f56c50 in /opt/rke-tools/
2021-01-13 17:01:51 UTC/bin/sh -c #(nop) COPY file:cbf6b2d5bfa743b085a1d1043f78da336e2fd33beb0b27390d33a2f77c2171c2 in /opt/rke-tools
2021-01-13 17:01:51 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2021-01-13 17:01:51 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-01-13 17:01:52 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2021-01-13T17:01:32Z
2021-01-13 17:01:52 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2021-01-13 17:01:52 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=dd8a463d976de02bfde871f05ac2ef09faef62e7
2021-01-13 17:01:52 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-01-13 16:58:03 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:21be49aa856f07be4e0a677b988e43c04bd595a3c858e58b6c364477bbbf7222 - 40.69% (96.6 MB)
[#001] sha256:7b5e1bc2bc95804adfcd2715992e45609590e0dd1afb70a25f787ba285e2101c - 0.0% (863 Bytes)
[#002] sha256:899884f723056a55de1dceecd183d49f07dc37fd9dee994f5de6cdd6942f78b4 - 0.0% (838 Bytes)
[#003] sha256:ffea4b65bddf583646e6419e008d26b11f6ae5667f70ebcbe49243f7874ae591 - 0.03% (65.6 KB)
[#004] sha256:4603361ba950abc81d0a75a705733ce99a80a6a1d6da29926187201559bb26f7 - 0.0% (842 Bytes)
[#005] sha256:78cf252b5eb9467c62c464b50e49f8d29974163d83bfeb5b4a9efb94db38e968 - 40.86% (97 MB)
[#006] sha256:ed2e0a7850c4c8d90a0eef11853b97fca5a9ecb0f8fae3249f209a856e8a26f9 - 0.04% (101 KB)
[#007] sha256:af4d4a5234690c54c2ad75e085e197f745a51c722de5d6653484ed49d9e93355 - 0.0% (869 Bytes)
[#008] sha256:c389f220757c04e843571be1557f262bd27ec7ff77a862dc52ec4811a9a5fd1d - 0.0% (839 Bytes)
[#009] sha256:245744b3d1b79051401ec9b3c6f339ad5aab78c79371ecee238d0b07b82d4b93 - 0.0% (858 Bytes)
[#010] sha256:93ab5206a46ccd66bb708a81c6bcaa53088ba592bfaef8ad61bed8698166762e - 0.02% (41.4 KB)
[#011] sha256:8812da6db2a1b131ef2a42296d6af4f407852866cdfad025118fd25a6b793d78 - 4.16% (9.88 MB)
[#012] sha256:304f147544bd7f586a6986306e902d5e6c7fcd0fba04f901b64b0d99c0e06587 - 0.7% (1.66 MB)
[#013] sha256:44fbb83334d23c440c83b2e061d77b705cf993d4e32ebf4289b50a3288b4b148 - 7.0% (16.6 MB)
[#014] sha256:b30b5bc6a7971c01574eeea49b034a035299288f8fcf265cf280b012969b37b2 - 6.39% (15.2 MB)
[#015] sha256:ab777ec82eb1eac6393b0a4a64768b2e4ee64e19d6237302d50663fe77cc0763 - 0.09% (209 KB)
[#016] sha256:357c33de9a6c2ac0dee4ca2388444bf13bf585fa4e81db411b0226061e64ff6d - 0.0% (8.16 KB)
[#017] sha256:cc11f94651993d1e4cd4543a99a3a78d70c7e58e01638693474f8505496e408a - 0.0% (1.54 KB)
[#018] sha256:b5b716fe91ff82b70d07d78c529497f4d02ff27bf3d4c6a9a381c35c271373d8 - 0.0% (1.42 KB)
[#019] sha256:9a9648983f3cc6c3d11ba62d160458cfbb6bf6e038c4cac3df8c47a68e14bf4c - 0.0% (7.67 KB)
[#020] sha256:3d28c7d380a5c8ad2d6279056140b7cf3d48bbca2722a75d9f7e245036190f5d - 0.0% (6.72 KB)
[#021] sha256:a1cc46ba3018f5565201cb37eed82ad95445d718facf36ea8ee9ec3106400b65 - 0.0% (887 Bytes)
[#022] sha256:9d6cfe9b315e47b49851e50846dae64619ca2d75ec2470cf797b413fcdd74be3 - 0.0% (886 Bytes)
[#023] sha256:be756caf08cda3a54e715848454d522ec1bf6eeff105f319485f893e321ecee0 - 0.0% (837 Bytes)
[#024] sha256:e1c91be6bfa49a99ff15f72e4be5632618a45052d705dcba178971999c3090e4 - 0.0% (860 Bytes)
[#025] sha256:7d153afc18176b699444e5e4eef74bca72ec2d067947e8a42cfe7f0cf3ffe44e - 0.0% (882 Bytes)
[#026] sha256:ece4d3e31e342184dc996a9f363cf003e1ecddfd87e57c8a53530233fbeb2a7c - 0.0% (860 Bytes)
[#027] sha256:38f0efe00be3c71aa87469d732a32a4bb94ca9e3c77918289bee2178d08b069c - 0.0% (859 Bytes)
Apply image 1809-amd64
2020-12-15 00:41:22 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-12-15 00:41:22 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-12-15 00:41:50 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-12-15 00:41:50 UTCcmd /S /C #(nop) USER ContainerUser
2020-12-15 00:42:13 UTCcmd /S /C #(nop) COPY dir:b7d603d3d1dc6eb42b16e4fb4b3aa3e67b31f78165f808c7221eb79966e50f68 in C:\Program Files\PowerShell
2020-12-15 00:42:49 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-12-15 00:42:49 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2020-12-15 00:42:50 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-01-11 23:26:20 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-01-13 16:57:14 UTCcmd /S /C #(nop) COPY file:7c80292bbdacca850f1c78ac775579f109a75cbe9ac1bb97343dd4ce682a68b3 in \Windows\System32\
2021-01-13 16:57:22 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-01-13 16:57:26 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-01-13 16:57:33 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-01-13 16:57:42 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-01-13 16:57:44 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-01-13 16:57:46 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-01-13 16:57:48 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-01-13 16:57:49 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-01-13 16:57:50 UTCcmd /S /C #(nop) COPY multi:42291a7f77829530b4a7f91daf9a5b4d05d3ff8f14a283c4ddf07e46ee700392 in \usr\bin\
2021-01-13 16:57:51 UTCcmd /S /C #(nop) COPY multi:e3db1b0e948316f4edefac68b24359a579f73b4fe90a45382ae728be4ccb830e in \share\scripts\
2021-01-13 16:57:52 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-01-13 16:57:54 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-01-13 16:57:56 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-01-13 16:57:59 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-01-13T16:55:15Z
2021-01-13 16:58:00 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-01-13 16:58:02 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=dd8a463d976de02bfde871f05ac2ef09faef62e7
2021-01-13 16:58:03 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-01-13 16:57:02 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:c5135e5444e8016d822960427ecd7b8a8aab4249eda3495d8365c73961b1d3f1 - 41.1% (98.2 MB)
[#001] sha256:e9be38d9a6b955dbfb1a5c7eb6115c88e4e8738ed5646678e276c8164185a970 - 0.0% (843 Bytes)
[#002] sha256:10a04c6a04e8539c940f7bab3d8be08da6293d13f5958c440b88d7517b2842e1 - 0.0% (843 Bytes)
[#003] sha256:eb58378af5b252d457f6eb987cab040d9ddf292e1e82915029c31bad4c20e7d5 - 0.03% (63.7 KB)
[#004] sha256:b78482ecfc8b7e65a874538fa9978aabf80ba520c1d5980f2432af6f4b675a98 - 0.0% (840 Bytes)
[#005] sha256:d6bc40f72d95c437c21541d297cfdc574da11a96c6ad358bf5df68119add3383 - 40.58% (97 MB)
[#006] sha256:c9788e27fb616c95809efc30cf6bb5ec6ed5b3f094314249697fc3cb2d4d16c6 - 0.06% (135 KB)
[#007] sha256:c78a88cdb21649afb7fb8b14025d33c115a6ac8b22e5c423adff0317c12be659 - 0.0% (866 Bytes)
[#008] sha256:9577883c7326a85917c28709057c5e2a86034ea861b41030554144939c6a1b1b - 0.0% (841 Bytes)
[#009] sha256:5ddafccde802fabd6afdf20453763a4f1755ffe865b533275e16d145fb08c7c6 - 0.0% (835 Bytes)
[#010] sha256:3c12c69a9d7cfdaf733595aedd089ea43b6e8711407c34217e92ce04ac78d599 - 0.02% (41.4 KB)
[#011] sha256:590f9ec284dc6898a0566850c73d495fb72a1f07afded6fade2b25010ddf9aeb - 4.13% (9.88 MB)
[#012] sha256:160d7dfc1a7093c57241273f021bfb21b32797beab667d8a46b3c3f7d87e98cb - 0.69% (1.66 MB)
[#013] sha256:95158d168e8d5480387b0ab4b161b0d8add49886ff66e52ee40888becbf9c245 - 6.95% (16.6 MB)
[#014] sha256:d7d04bd8f04db778e5a2ddc3ecacfc59bccb9b1576dd748182fe6c5b1bd68931 - 6.35% (15.2 MB)
[#015] sha256:4ae40350aac6b398fe8abaca6b911fab3d5ec700c37007bdb4df0a5bcc4ab158 - 0.09% (209 KB)
[#016] sha256:d0205626a2ed0903291c101d21ac7b2bbf1473ca761f91645de9afedf5f7f33f - 0.0% (8.09 KB)
[#017] sha256:9c89ab21e857d5fad6cef5099c9286f4c70527f20b97adae5eb33e3bfc2e433f - 0.0% (1.53 KB)
[#018] sha256:07a6ef7a6785b67df737e873fb624e96051e5287e19cef3f3027e76bf14c94be - 0.0% (1.39 KB)
[#019] sha256:ad34dafdf1778a8bd5fbad6c03a6d085ac2576eae62760ff4746158b19fdc2a6 - 0.0% (7.72 KB)
[#020] sha256:d573740ad5bcb4313fba2e34bcc7bd8f274920927f4a988ab8634fc0074e8214 - 0.0% (6.69 KB)
[#021] sha256:0a4f5ae3ee46186b6341c4cf6da82a6427def02905944f8511dcaf0d4c621cc2 - 0.0% (858 Bytes)
[#022] sha256:b5f261800381b87e816a637d123884818a916954932842e58889ac7bb6a7dbf4 - 0.0% (901 Bytes)
[#023] sha256:1c9394cb0a59fcec90af6a5bc85e4e31e6cad5ae9727f8d03ae90c647398775f - 0.0% (850 Bytes)
[#024] sha256:95c50f669e43ffb80017d3a08e85dbf7009fbb75f72d23d6953b27a89b0e6772 - 0.0% (900 Bytes)
[#025] sha256:1fbd878259d46ba12ecd929c1e12acacbf98200ccb7a08d95bd6f1f8171fc23a - 0.0% (884 Bytes)
[#026] sha256:07cbffe36164c3bc1d079ac588b42cb24cf9ed61b203cebb9080c2808a45a637 - 0.0% (827 Bytes)
[#027] sha256:586d8232d3b94d0d320718b0cf85ac6bd7284ea22fbaec055806a3d06c76912d - 0.0% (887 Bytes)
Apply image 1909-amd64
2020-12-15 00:31:16 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-12-15 00:31:17 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-12-15 00:32:04 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-12-15 00:32:04 UTCcmd /S /C #(nop) USER ContainerUser
2020-12-15 00:32:31 UTCcmd /S /C #(nop) COPY dir:b7d603d3d1dc6eb42b16e4fb4b3aa3e67b31f78165f808c7221eb79966e50f68 in C:\Program Files\PowerShell
2020-12-15 00:33:11 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-12-15 00:33:12 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2020-12-15 00:33:12 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-01-11 17:01:05 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-01-13 16:56:20 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2021-01-13 16:56:24 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-01-13 16:56:27 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-01-13 16:56:33 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-01-13 16:56:43 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-01-13 16:56:45 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-01-13 16:56:46 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-01-13 16:56:48 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-01-13 16:56:49 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-01-13 16:56:50 UTCcmd /S /C #(nop) COPY multi:42291a7f77829530b4a7f91daf9a5b4d05d3ff8f14a283c4ddf07e46ee700392 in \usr\bin\
2021-01-13 16:56:52 UTCcmd /S /C #(nop) COPY multi:e3db1b0e948316f4edefac68b24359a579f73b4fe90a45382ae728be4ccb830e in \share\scripts\
2021-01-13 16:56:53 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-01-13 16:56:54 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-01-13 16:56:55 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-01-13 16:56:56 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-01-13T16:53:13Z
2021-01-13 16:56:58 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-01-13 16:57:00 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=dd8a463d976de02bfde871f05ac2ef09faef62e7
2021-01-13 16:57:02 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-01-13 16:57:08 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:302b7cf33b3a2bd3c958c33a0bb0221099c7abebd46bd685a171899210be5180 - 41.08% (98.1 MB)
[#001] sha256:c99b71322f98094328cbfe4e533e62c323564185edb3aef36f201817c35d316f - 0.0% (874 Bytes)
[#002] sha256:644592099bcca3931ac208de7acb18b9864fc376aa82ce79d503ff8811305b80 - 0.0% (824 Bytes)
[#003] sha256:7f7168ee45921ab5248822efe6710cd780cf1a3ce1ce72f4902c574a2fdca84a - 0.03% (64.4 KB)
[#004] sha256:567655c4eda01ab6f5e1b0c8458db71ca7ebcc436a8e8f3105d57ce7c18dc775 - 0.0% (847 Bytes)
[#005] sha256:0439fdc969df0a1428ef1ee44139a71fdcce4e14d78a889ba00380d3c13884b7 - 40.6% (97 MB)
[#006] sha256:72a7a5d1fb28553e60322aa9f952dfd9bf21b40672041fa06131be2f8fea358c - 0.04% (91.9 KB)
[#007] sha256:68fc068d7c1db4cdc2fe38f2bcb9c5ad86ee8bd823baba9f0a479586a1bad7e0 - 0.0% (840 Bytes)
[#008] sha256:d13bfa802c2e0f5118e03c462abe5f10ae3dbb32512317987800a17255806b3c - 0.0% (840 Bytes)
[#009] sha256:1c8a366f2636e2efde8f96cea5c13b6da0622fe5d686ffb1e3b01e5f0e0661c8 - 0.0% (830 Bytes)
[#010] sha256:df46a36d9005ad208c1de9de58e226666cb9c6af7d7816af6554d87602043887 - 0.02% (41.4 KB)
[#011] sha256:f552b912a035435ee834e56f7fcc7110958200f1b71ef577fc2e1bf7dcd14ca9 - 4.14% (9.88 MB)
[#012] sha256:811de7c2eb885219db6c7c8b1d504354b8c2b41d02ed636d6b593f5d3fc7d28c - 0.69% (1.66 MB)
[#013] sha256:66e2907bc7f4406639d761bbe69bcba1fef9cc67e93b3f3af3a9f565a0904e61 - 6.96% (16.6 MB)
[#014] sha256:90ce85462969285f194143a8b67fde0a1692d78d8b6fc6d0bc94831a396dcc65 - 6.35% (15.2 MB)
[#015] sha256:d275954ea4a4381a55f7b1637de6c9b417cfdfd03248618fd623b28763824622 - 0.09% (209 KB)
[#016] sha256:bd427f3d3b27eb70c0102b7089b01deae20fa7120676bfbd2d967b038a52c910 - 0.0% (8.15 KB)
[#017] sha256:9318bff3d91d385bf063aee2b7dcdd85ff031f70c83bcea294e5aefb5a521f94 - 0.0% (1.54 KB)
[#018] sha256:dc4b6d487be9c33aed6600e1eb1916090170183edd6867262c7028615acea87e - 0.0% (1.37 KB)
[#019] sha256:18f95a4c8631a595ad0ed433d9b44378a0dadc95c954d31026ac798d1a053db8 - 0.0% (7.69 KB)
[#020] sha256:6d0e6eea3793cb992a5ec44598207962c8fdd077f6eaa2890fbaf7211323b794 - 0.0% (6.7 KB)
[#021] sha256:b32c56094e9ab70e0be0b31289b6252b3b47d322b3051ce86041d3c1d54afa44 - 0.0% (836 Bytes)
[#022] sha256:b1c19ad1bad2f9a5365cd9fa62d3b2a03ee9690e5abc13e0737e12f51deb85f0 - 0.0% (864 Bytes)
[#023] sha256:a0752aa4806567ecbeff50c69f9b882e07e632056e4449fde6810baa5525a62d - 0.0% (850 Bytes)
[#024] sha256:9cf451318aafce1332bf3bc3708def1ea9f29f2447ba6dfd74f8878e2f6dc79b - 0.0% (881 Bytes)
[#025] sha256:3c56da57b9207193bac06ec4230849bb38675b0faa202f8b18aa6dc45a889ebf - 0.0% (885 Bytes)
[#026] sha256:cd53ea86f3735c8e99fbd8fcb9088c97f399bc5d15ddaaf049ceec2e0afb6f9f - 0.0% (892 Bytes)
[#027] sha256:b535a5d343ff06c0ded7f91b5f73c72212aa4e5642f11704a7ee6e6b6b78113c - 0.0% (834 Bytes)
Apply image 1903-amd64
2020-12-15 00:30:30 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-12-15 00:30:30 UTCcmd /S /C #(nop) USER ContainerAdministrator
2020-12-15 00:30:59 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2020-12-15 00:31:00 UTCcmd /S /C #(nop) USER ContainerUser
2020-12-15 00:31:50 UTCcmd /S /C #(nop) COPY dir:b7d603d3d1dc6eb42b16e4fb4b3aa3e67b31f78165f808c7221eb79966e50f68 in C:\Program Files\PowerShell
2020-12-15 00:32:35 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-12-15 00:32:36 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2020-12-15 00:32:37 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-01-11 17:02:54 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-01-13 16:56:24 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2021-01-13 16:56:28 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-01-13 16:56:31 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-01-13 16:56:38 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-01-13 16:56:48 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-01-13 16:56:49 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-01-13 16:56:51 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-01-13 16:56:52 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-01-13 16:56:56 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-01-13 16:56:58 UTCcmd /S /C #(nop) COPY multi:42291a7f77829530b4a7f91daf9a5b4d05d3ff8f14a283c4ddf07e46ee700392 in \usr\bin\
2021-01-13 16:56:59 UTCcmd /S /C #(nop) COPY multi:e3db1b0e948316f4edefac68b24359a579f73b4fe90a45382ae728be4ccb830e in \share\scripts\
2021-01-13 16:57:00 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-01-13 16:57:01 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-01-13 16:57:03 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-01-13 16:57:04 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-01-13T16:53:53Z
2021-01-13 16:57:05 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-01-13 16:57:07 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=dd8a463d976de02bfde871f05ac2ef09faef62e7
2021-01-13 16:57:08 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-01-13 16:51:26 UTC
56.6 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
RANCHER_CONFD_VERSIONv0.16.2
[#000] sha256:20d8a246443a66e74e17f2a0e81a51fe774876ca0c2676691c37ee1b0e4d3cd5 - 4.59% (2.6 MB)
[#001] sha256:837c512907f4fe4dd20095a7f01b61eb2aa5896868deb7934465567d43954b07 - 11.16% (6.32 MB)
[#002] sha256:d9d18a8e396302033f78f9abd6eb0fbd3d7614e2f9729ea846b6412204b3e39e - 0.0% (600 Bytes)
[#003] sha256:9b4f20b1c9e1e896a961e53a02ac1959fc81ed65fae80c0f37b275a29f362da7 - 0.0% (903 Bytes)
[#004] sha256:79c162344593a4652e36b24c4d52eb740819f8fe80c2b905eb12adacf3420d12 - 0.0% (667 Bytes)
[#005] sha256:3c36006b64686b6984ced2adaebaf3ae9353d3bda52bc11ef05383bebce092c1 - 1.01% (583 KB)
[#006] sha256:e2c9c0cdcd0754ab55e6c23a1f247c4592dc542f496f6991e9df9461541aa989 - 40.77% (23.1 MB)
[#007] sha256:d0474fa7d54ecb8e42d556fca25905da3620e1db9e7ff777ee7459b753386c22 - 0.0% (160 Bytes)
[#008] sha256:936876ed1a72196371f7c2e80aaa94dbdbbb395e03a7f225844d1957bb3c6cd7 - 25.41% (14.4 MB)
[#009] sha256:90678ff8663de6a113d2a4599fd26e73989872f18089857a0566c131308ac1a7 - 2.73% (1.55 MB)
[#010] sha256:e1a15fe96bda9c6fdcd8977f1d1ab4c36065b5779545ab1fadda00dc713098a7 - 8.05% (4.56 MB)
[#011] sha256:98d1c72bd566a8e7207de9abc66aaacabca1cd576ceba07c2cb587895eb1c8e5 - 0.0% (443 Bytes)
[#012] sha256:2a195c0cbe7bc3af60adc4684fe221d4b9370ef85a7c41201286a62a6955631a - 0.0% (277 Bytes)
[#013] sha256:044911881f6fd28483d5b8ea81f93b33a34b6bc84c01e4bc9decd4f332c5eae7 - 0.0% (900 Bytes)
[#014] sha256:5fb705ad9126d8adfb2d7d1cad6e7b77b1c7d9fba6fce20c178a03270ef25f97 - 0.0% (2.6 KB)
[#015] sha256:072db39ed1570d87d1dfc2454c47a2353c5b87ca21b93a1070ebff48f78cd553 - 6.29% (3.56 MB)
/bin/sh -c #(nop) ADD file:47bb1b85a4eb4d0b355ae89ec5c71c09e2c2b7e21e1851a2896365eb17134f57 in /
2020-12-16 23:40:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-12-17 01:54:17 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2020-12-17 01:54:19 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2020-12-17 01:54:19 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2020-12-17 01:54:20 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2020-12-17 01:58:14 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-12-17 01:58:15 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2020-12-17 01:58:16 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2020-12-17 01:58:17 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2020-12-17 01:58:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2020-12-17 01:58:20 UTC/bin/sh -c #(nop) EXPOSE 80
2020-12-17 01:58:22 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2020-12-17 01:58:26 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2021-01-13 16:51:08 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2021-01-13 16:51:08 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2021-01-13 16:51:08 UTC/bin/sh -c #(nop) ENV DOCKER_URL_amd64=https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz DOCKER_URL_arm64=https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz DOCKER_URL=DOCKER_URL_arm64
2021-01-13 16:51:10 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2021-01-13 16:51:10 UTC/bin/sh -c #(nop) ENV RANCHER_CONFD_VERSION=v0.16.2
2021-01-13 16:51:14 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/rancher/confd/releases/download/${RANCHER_CONFD_VERSION}/confd-${RANCHER_CONFD_VERSION}-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
2021-01-13 16:51:16 UTC|1 ARCH=arm64 /bin/sh -c mkdir -p /opt/cni/bin
2021-01-13 16:51:18 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
2021-01-13 16:51:20 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}
2021-01-13 16:51:20 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
2021-01-13 16:51:22 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
2021-01-13 16:51:22 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2021-01-13 16:51:23 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2021-01-13 16:51:23 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2021-01-13 16:51:24 UTC/bin/sh -c #(nop) COPY multi:2102a27cd168d4803579f65af8ae6f63fbcbd2569b4c76ea5107fa8570f56c50 in /opt/rke-tools/
2021-01-13 16:51:24 UTC/bin/sh -c #(nop) COPY file:8f4d23419bfb9272b247cbe3d90aa424a73ff96f48dfceb1d8725df19b7cd42f in /opt/rke-tools
2021-01-13 16:51:24 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2021-01-13 16:51:25 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-01-13 16:51:25 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2021-01-13T16:51:04Z
2021-01-13 16:51:26 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2021-01-13 16:51:26 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=dd8a463d976de02bfde871f05ac2ef09faef62e7
2021-01-13 16:51:26 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.