2021-11-10 18:47:01 UTC
303 MB
1.17.3
GOPATH/go
PATH/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:f4b233498baa64e956a5f70979351e206bd085bd547a3cf25c08b154348df726 - 16.11% (48.8 MB)
[#001] sha256:ece122ff48522de249e81ee22f617bf84d59b003d3c79f44331163046a937e4c - 2.52% (7.63 MB)
[#002] sha256:378307f52e8eeddb964324804377cd9fd65b1bf7b848c5b690e63ef92f1fe3d5 - 3.25% (9.86 MB)
[#003] sha256:559cdd7287c6a9a0f142216d3645f886b4a777073daae85c51de968330bb9f9d - 16.81% (51 MB)
[#004] sha256:c0a5826bef43784d69662ba54b5a99548f2731e8d1085736f81382d156f2113e - 23.17% (70.2 MB)
[#005] sha256:b19d9cad7412733d58ee2078a86375915cf1b544bfef7a8668cf6c9e39de292c - 33.22% (101 MB)
[#006] sha256:215a219e5f756a0bf592f491c57b01577b3d80a2de9f60566f68cdf8031c4eef - 0.0% (156 Bytes)
[#007] sha256:e2a267dd29d5d389e2e52fc2e71ec385b2c051fd6da70ffe079533b1977abad4 - 2.85% (8.63 MB)
[#008] sha256:9fce04846d7e7032c53f96463000f99e5ba8f2b34b3b81eb277a517c6ab58514 - 2.07% (6.28 MB)
/bin/sh -c #(nop) ADD file:1461fa0362c70b5b7a677c57dd48633827fd9635a9cb136730aa7581cc523b46 in /
2021-10-12 01:40:02 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-10-12 04:37:56 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-10-12 04:38:03 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-10-12 04:38:28 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-10-12 22:35:33 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends g++ gcc libc6-dev make pkg-config ; rm -rf /var/lib/apt/lists/*
2021-10-12 22:35:34 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2021-11-08 21:50:32 UTC/bin/sh -c #(nop) ENV GOLANG_VERSION=1.17.3
2021-11-08 21:50:49 UTC/bin/sh -c set -eux; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; url=; case "$arch" in 'amd64') url='https://dl.google.com/go/go1.17.3.linux-amd64.tar.gz'; sha256='550f9845451c0c94be679faf116291e7807a8d78b43149f9506c1b15eb89008c'; ;; 'armel') export GOARCH='arm' GOARM='5' GOOS='linux'; ;; 'armhf') url='https://dl.google.com/go/go1.17.3.linux-armv6l.tar.gz'; sha256='aa0d5516c8bd61654990916274d27491cfa229d322475502b247a8dc885adec5'; ;; 'arm64') url='https://dl.google.com/go/go1.17.3.linux-arm64.tar.gz'; sha256='06f505c8d27203f78706ad04e47050b49092f1b06dc9ac4fbee4f0e4d015c8d4'; ;; 'i386') url='https://dl.google.com/go/go1.17.3.linux-386.tar.gz'; sha256='982487a0264626950c635c5e185df68ecaadcca1361956207578d661a7b03bee'; ;; 'mips64el') export GOARCH='mips64le' GOOS='linux'; ;; 'ppc64el') url='https://dl.google.com/go/go1.17.3.linux-ppc64le.tar.gz'; sha256='b821ff58d088c61adc5d7376179a342f325d8715a06abdeb6974f6450663ee60'; ;; 's390x') url='https://dl.google.com/go/go1.17.3.linux-s390x.tar.gz'; sha256='7d1727e08fef295f48aed2b8124a07e3752e77aea747fcc7aeb8892b8e2f2ad2'; ;; *) echo >&2 "error: unsupported architecture '$arch' (likely packaging update needed)"; exit 1 ;; esac; build=; if [ -z "$url" ]; then build=1; url='https://dl.google.com/go/go1.17.3.src.tar.gz'; sha256='705c64251e5b25d5d55ede1039c6aa22bea40a7a931d14c370339853643c3df0'; echo >&2; echo >&2 "warning: current architecture ($arch) does not have a compatible Go binary release; will be building from source"; echo >&2; fi; wget -O go.tgz.asc "$url.asc"; wget -O go.tgz "$url" --progress=dot:giga; echo "$sha256 *go.tgz" | sha256sum -c -; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; 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-11-08 21:50:50 UTC/bin/sh -c #(nop) ENV GOPATH=/go
2021-11-08 21:50:50 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-11-08 21:50:51 UTC/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
2021-11-08 21:50:51 UTC/bin/sh -c #(nop) WORKDIR /go
2021-11-10 18:47:00 UTC/bin/sh -c #(nop) COPY file:cf69a4f038ed5fad85c484f7d8b3505b3043c06f22400d93f390024971d37059 in /usr/bin/
2021-11-10 18:47:01 UTC/bin/sh -c #(nop) COPY file:300226ef1f30e12f5cd919f65b44d823d0b59afb8ee430d6f65899a0e8bac699 in /usr/bin/
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.