2023-10-31 16:19:50 UTC
131 MB
/etc/hyperledger/fabric
GOLANG_VERSION1.21.3
GOPATH/go
GOTOOLCHAINlocal
PATH/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:96526aa774ef0126ad0fe9e9a95764c5fc37f409ab9e97021e7b4775d82bf6fa - 2.48% (3.24 MB)
[#001] sha256:cc37b24bb09971feb8bf4882e861bce9db0c985a16a900adb0dc9de3f854243b - 0.21% (278 KB)
[#002] sha256:40a4303e95078c253686dcc16d7717644af63809efcbd753c0a999c9aad3fe72 - 48.92% (63.9 MB)
[#003] sha256:359925be0f358b952dc8be63647139c5aab0fff94f7a070d88cb51dd258f80e5 - 0.0% (155 Bytes)
[#004] sha256:4f7c8fe93ddeebad803141f570c4030118ce0615d3725c019b22209d0b480981 - 4.73% (6.18 MB)
[#005] sha256:63d25ebcc2516e5767b4759e2d3cb8632d6e2f2efd3060c06e6c5579e19559e2 - 43.64% (57 MB)
[#006] sha256:7d9cbf294b0371bcdb533d15121db2e6c29717167656fe3085a22edea20dbba0 - 0.02% (22.3 KB)
/bin/sh -c #(nop) ADD file:756183bba9c7f4593c2b216e98e4208b9163c4c962ea0837ef88bd917609d001 in /
2023-09-28 21:19:27 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-09-28 22:54:30 UTC/bin/sh -c apk add --no-cache ca-certificates
2023-09-28 22:54:31 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-10-10 19:20:11 UTC/bin/sh -c #(nop) ENV GOLANG_VERSION=1.21.3
2023-10-10 19:20:21 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; arch="$(apk --print-arch)"; url=; case "$arch" in 'x86_64') url='https://dl.google.com/go/go1.21.3.linux-amd64.tar.gz'; sha256='1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8'; ;; 'armhf') url='https://dl.google.com/go/go1.21.3.linux-armv6l.tar.gz'; sha256='a1ddcaaf0821a12a800884c14cb4268ce1c1f5a0301e9060646f1e15e611c6c7'; ;; 'armv7') url='https://dl.google.com/go/go1.21.3.linux-armv6l.tar.gz'; sha256='a1ddcaaf0821a12a800884c14cb4268ce1c1f5a0301e9060646f1e15e611c6c7'; ;; 'aarch64') url='https://dl.google.com/go/go1.21.3.linux-arm64.tar.gz'; sha256='fc90fa48ae97ba6368eecb914343590bbb61b388089510d0c56c2dde52987ef3'; ;; 'x86') url='https://dl.google.com/go/go1.21.3.linux-386.tar.gz'; sha256='fb209fd070db500a84291c5a95251cceeb1723e8f6142de9baca5af70a927c0e'; ;; 'ppc64le') url='https://dl.google.com/go/go1.21.3.linux-ppc64le.tar.gz'; sha256='3b0e10a3704f164a6e85e0377728ec5fd21524fabe4c925610e34076586d5826'; ;; 'riscv64') url='https://dl.google.com/go/go1.21.3.linux-riscv64.tar.gz'; sha256='67d14d3e513e505d1ec3ea34b55641c6c29556603c7899af94045c170c1c0f94'; ;; 's390x') url='https://dl.google.com/go/go1.21.3.linux-s390x.tar.gz'; sha256='4c78e2e6f4c684a3d5a9bdc97202729053f44eb7be188206f0627ef3e18716b6'; ;; *) 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.21.3.src.tar.gz'; sha256='186f2b6f8c8b704e696821b09ab2041a5c1ee13dcbc3156a13adcf75931ee488'; 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"; 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 --keyserver keyserver.ubuntu.com --recv-keys '2F52 8D36 D67B 69ED F998 D857 78BD 6547 3CB3 BD13'; 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 apk add --no-cache --virtual .build-deps bash gcc go musl-dev ; export GOCACHE='/tmp/gocache'; ( cd /usr/local/go/src; export GOROOT_BOOTSTRAP="$(go env GOROOT)" GOHOSTOS="$GOOS" GOHOSTARCH="$GOARCH"; if [ "${GOARCH:-}" = '386' ]; then export CGO_CFLAGS='-fno-stack-protector'; fi; ./make.bash; ); apk del --no-network .build-deps; 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 "$GOCACHE" ; fi; apk del --no-network .fetch-deps; go version
2023-10-10 19:20:22 UTC/bin/sh -c #(nop) ENV GOTOOLCHAIN=local
2023-10-10 19:20:22 UTC/bin/sh -c #(nop) ENV GOPATH=/go
2023-10-10 19:20:22 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
2023-10-10 19:20:22 UTC/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 1777 "$GOPATH"
2023-10-10 19:20:23 UTC/bin/sh -c #(nop) WORKDIR /go
2023-10-31 16:18:11 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apk add --no-cache bash git jq tzdata; # buildkit
2023-10-31 16:19:50 UTC (buildkit.dockerfile.v0)ENV FABRIC_CFG_PATH=/etc/hyperledger/fabric
2023-10-31 16:19:50 UTC (buildkit.dockerfile.v0)VOLUME [/etc/hyperledger/fabric]
2023-10-31 16:19:50 UTC (buildkit.dockerfile.v0)COPY /go/src/github.com/hyperledger/fabric/build/bin /usr/local/bin # buildkit
2023-10-31 16:19:50 UTC (buildkit.dockerfile.v0)COPY /go/src/github.com/hyperledger/fabric/sampleconfig /etc/hyperledger/fabric # buildkit
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.