2021-08-16 02:55:54 UTC
700 MB
1.16.7
GOPATH/go
PATH/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:627b765e08d177e63c9a202ca4991b711448905b934435c70b7cbd7d4a9c7959 - 6.87% (48.1 MB)
[#001] sha256:c040670e5e559fd936db175530ad4c1dd014bd25b2bf25ea19fa20554fe2d736 - 1.07% (7.47 MB)
[#002] sha256:073a180f4992853fa3dd8da604e7b041bc8ea92157749d042c0853312f178f6a - 1.36% (9.53 MB)
[#003] sha256:bf76209566d0c8d78df205b09e6e5b52ff7f10cb4e1c03d9336ed7dd2decd919 - 7.06% (49.4 MB)
[#004] sha256:6182a456504bb119011b721ede5d1e6cf4d0621447465d80cc1d4e53c0ef95e6 - 9.36% (65.6 MB)
[#005] sha256:636ca4e39e2f1a080c3e457c37d41ec7276c20b7c777bf9a8f94eed9fd3e28f6 - 17.57% (123 MB)
[#006] sha256:9bf36a0814301db7012cd1d13cf84bcb230671c9939c0c99ac1a2cec9c6102a5 - 0.0% (156 Bytes)
[#007] sha256:8d4f3086d2682bd290eab1f96e8f6f005c9b837064081909053a16c3bf40033e - 1.93% (13.5 MB)
[#008] sha256:c15a4db6ff4eebc32f0f34ce33a692eaf9a2545e95f0e29f946c9bdac5a4ed3e - 7.33% (51.4 MB)
[#009] sha256:2912c812f24f77b2bcded3f53663c7ff44b5fc49f460661c135cce623f906b24 - 47.45% (332 MB)
/bin/sh -c #(nop) ADD file:e952f6979e4b0ead00b6906db1dd70eb9beb564a04e2f02e2e0cff8614920216 in /
2021-07-22 00:45:31 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-07-22 01:12:14 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl netbase wget ; rm -rf /var/lib/apt/lists/*
2021-07-22 01:12:20 UTC/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr ; rm -rf /var/lib/apt/lists/*; fi
2021-07-22 01:12:38 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps && rm -rf /var/lib/apt/lists/*
2021-07-23 02:01:18 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends g++ gcc libc6-dev make pkg-config && rm -rf /var/lib/apt/lists/*
2021-07-23 02:01:18 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2021-08-05 21:20:03 UTC/bin/sh -c #(nop) ENV GOLANG_VERSION=1.16.7
2021-08-05 21:20:17 UTC/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; url=; case "${dpkgArch##*-}" in 'amd64') url='https://dl.google.com/go/go1.16.7.linux-amd64.tar.gz'; sha256='7fe7a73f55ba3e2285da36f8b085e5c0159e9564ef5f63ee0ed6b818ade8ef04'; ;; 'armel') export GOARCH='arm' GOARM='5' GOOS='linux'; ;; 'armhf') url='https://dl.google.com/go/go1.16.7.linux-armv6l.tar.gz'; sha256='b2973ceeae234866368baf9469fb7b9444857e50dc785ba879d98a0aa208a12b'; ;; 'arm64') url='https://dl.google.com/go/go1.16.7.linux-arm64.tar.gz'; sha256='63d6b53ecbd2b05c1f0e9903c92042663f2f68afdbb67f4d0d12700156869bac'; ;; 'i386') url='https://dl.google.com/go/go1.16.7.linux-386.tar.gz'; sha256='5c0c8891fa88993f2193fbc9dd5cca6c250c89aa8c12bbaa382b6ff38139bcc3'; ;; 'mips64el') export GOARCH='mips64le' GOOS='linux'; ;; 'ppc64el') url='https://dl.google.com/go/go1.16.7.linux-ppc64le.tar.gz'; sha256='03e02b2ac6dc1601203f335385b9bbe15a55677066d9a1a1280b5fcfa6ec4738'; ;; 's390x') url='https://dl.google.com/go/go1.16.7.linux-s390x.tar.gz'; sha256='5f691c9551710ebb17bbda04389944aa7332f42ab28f92516a69fbd7860e7e9f'; ;; *) echo >&2 "error: unsupported architecture '$dpkgArch' (likely packaging update needed)"; exit 1 ;; esac; build=; if [ -z "$url" ]; then build=1; url='https://dl.google.com/go/go1.16.7.src.tar.gz'; sha256='1a9f2894d3d878729f7045072f30becebe243524cf2fce4e0a7b248b1e0654ac'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; fi; wget -O go.tgz.asc "$url.asc" --progress=dot:giga; wget -O go.tgz "$url" --progress=dot:giga; echo "$sha256 *go.tgz" | sha256sum --strict --check -; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 'EB4C 1BFD 4F04 2F6D DDCC EC91 7721 F63B D38B 4796'; gpg --batch --verify go.tgz.asc go.tgz; gpgconf --kill all; rm -rf "$GNUPGHOME" go.tgz.asc; tar -C /usr/local -xzf go.tgz; rm go.tgz; if [ -n "$build" ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; ( cd /usr/local/go/src; export GOROOT_BOOTSTRAP="$(go env GOROOT)" GOHOSTOS="$GOOS" GOHOSTARCH="$GOARCH"; ./make.bash; ); apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; go install std; rm -rf /usr/local/go/pkg/*/cmd /usr/local/go/pkg/bootstrap /usr/local/go/pkg/obj /usr/local/go/pkg/tool/*/api /usr/local/go/pkg/tool/*/go_bootstrap /usr/local/go/src/cmd/dist/dist ; fi; go version
2021-08-05 21:20:18 UTC/bin/sh -c #(nop) ENV GOPATH=/go
2021-08-05 21:20:18 UTC/bin/sh -c #(nop) ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2021-08-05 21:20:19 UTC/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
2021-08-05 21:20:19 UTC/bin/sh -c #(nop) WORKDIR /go
2021-08-16 02:53:34 UTC/bin/sh -c #(nop) MAINTAINER dashpole@google.com
2021-08-16 02:53:40 UTC/bin/sh -c apt-get update && apt-get install -y git dmsetup && apt-get clean
2021-08-16 02:53:45 UTC/bin/sh -c git clone https://github.com/google/cadvisor.git /go/src/github.com/google/cadvisor
2021-08-16 02:55:47 UTC/bin/sh -c cd /go/src/github.com/google/cadvisor && make
2021-08-16 02:55:54 UTC/bin/sh -c #(nop) ENTRYPOINT ["/go/src/github.com/google/cadvisor/cadvisor"]
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.