Namespace
library
Image / Tag
golang:1.14.13
Content Digest
sha256:0ae302aea084fbfe4d0f0d1d6a7d424218df7ddba0d66a2f6bbdb15b95e6b6ac
Details
Created

2021-01-12 17:18:22 UTC

Size

288 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:0766cf79c8928aa3f896ef392c35c2447301aec0dbac55ac6da9a6efde011fd6 - 16.96% (48.8 MB)

[#001] sha256:45e3049e9c61bd8ec7a11a8d511e6e49314335b9483bebb284233b813718076b - 2.65% (7.61 MB)

[#002] sha256:c5e60415ae2910cd4250c2204e52a34fb01fd20439269ee1cb768e195de279c3 - 3.43% (9.86 MB)

[#003] sha256:3cb1f672cb3a4e1913fc3656c4c8fc50ef5f7c6290fc38830ccac36ef778eecd - 17.72% (51 MB)

[#004] sha256:2eeb8be618f9696ece093704140db318f0d3b29e70a2fef5d00049281b0da824 - 24.39% (70.2 MB)

[#005] sha256:56d9861b9e08dda5599962b81a093ac7bc7074460ca57a295e517c5d87b97b97 - 34.85% (100 MB)

[#006] sha256:f2a49541894fe329d2810f012890c03e10f85a15c374bc3d2f8c7642ae901a30 - 0.0% (125 Bytes)


History
2021-01-12 00:39:20 UTC

/bin/sh -c #(nop) ADD file:a9adff9550f58602df592d7afdcf7dead81207490f94d5119ce09d6a3a35c856 in /

2021-01-12 00:39:20 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 03:18:36 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-01-12 03:18:44 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-01-12 03:19:10 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-01-12 17:14:42 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-01-12 17:14:42 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 17:18:05 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 17:18:20 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 17:18:21 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 17:18:21 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-01-12 17:18:22 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 17:18:22 UTC

/bin/sh -c #(nop) WORKDIR /go

Details
Created

2021-01-13 15:03:18 UTC

Size

5.57 GB

Content Digest
Environment
GIT_DOWNLOAD_SHA256

8f65208f92c0b4c3ae4c0cf02d4b5f6791d539cd1a07b2df62b7116467724735

GIT_DOWNLOAD_URL

https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/MinGit-2.23.0-64-bit.zip

GIT_TAG

v2.23.0.windows.1

GIT_VERSION

2.23.0

GOLANG_VERSION

1.14.13

GOPATH

C:\gopath


Layers

[#000] sha256:3889bb8d808bbae6fa5a33e07093e65c31371bcf9e4c38c21be6b9af52ad1548 - 68.08% (3.79 GB)

[#001] sha256:bd091f41e44cabc11504b7e130c74a7ef654f58840ba102e3507c4fdf2bae994 - 28.84% (1.61 GB)

[#002] sha256:51e9c5c519fdcd28aa0ed033a3cc16cf37dd76bea8ec06b2dc4a344415bdd224 - 0.0% (1.14 KB)

[#003] sha256:7c7c74b9f7bda8494c06b61f172b711267512a7eef464aae2946fa79f14fbc6c - 0.0% (1.1 KB)

[#004] sha256:16980afcb11d4373e2ced6b4e81c79cdc57071c5b2d049925d8103e3b1685c0a - 0.0% (1.1 KB)

[#005] sha256:91b769faccdc304e663d15a124104d2aaa3ac8f722d364a8196f27a3cb7485cd - 0.0% (1.13 KB)

[#006] sha256:8ee85b465f4b2c47a1ed4af61a17e4f6bd1f26c42b26eeba881f2a5fdf182619 - 0.0% (1.1 KB)

[#007] sha256:7a900fab54fda5407bf2c34f918f84f42c2ba78c89b79b10e5a8059a642814c5 - 0.59% (33.6 MB)

[#008] sha256:22d4728bca9e3e0ca560fb0489af700986254ac669509fff4e8e8e208dde2bf3 - 0.0% (1.1 KB)

[#009] sha256:7d7738a5c4a381adacded290e0ed60fb37c9afa472ca097aae390199b16f444d - 0.09% (5.34 MB)

[#010] sha256:43c5a32e2664101863f7319304c84380f4f028ca9db6a4b655e225dc33a58c29 - 0.0% (1.1 KB)

[#011] sha256:6b6ee35e1b22b1b7e2f3ccd6b30796d29057eb0639f90099610a2a57e8cba837 - 2.4% (137 MB)

[#012] sha256:b5f3a8c44b259c3c415e2b04a7ccb015b5304ee7f33e5f93f257cfc5d74fc785 - 0.0% (1.25 KB)


History
2016-11-19 17:05:00 UTC

Apply image 1607-RTM-amd64

2021-01-07 11:30:00 UTC

Install update ltsc2016-amd64

2021-01-13 13:37:06 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

2021-01-13 13:37:07 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_VERSION=2.23.0

2021-01-13 13:37:08 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_TAG=v2.23.0.windows.1

2021-01-13 13:37:09 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_URL=https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/MinGit-2.23.0-64-bit.zip

2021-01-13 13:37:09 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_SHA256=8f65208f92c0b4c3ae4c0cf02d4b5f6791d539cd1a07b2df62b7116467724735

2021-01-13 13:39:17 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:GIT_DOWNLOAD_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:GIT_DOWNLOAD_URL -OutFile 'git.zip'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:GIT_DOWNLOAD_SHA256); if ((Get-FileHash git.zip -Algorithm sha256).Hash -ne $env:GIT_DOWNLOAD_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive -Path git.zip -DestinationPath C:\git\.; Write-Host 'Removing ...'; Remove-Item git.zip -Force; Write-Host 'Updating PATH ...'; $env:PATH = 'C:\git\cmd;C:\git\mingw64\bin;C:\git\usr\bin;' + $env:PATH; [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ("git version") ...'; git version; Write-Host 'Complete.';

2021-01-13 13:39:19 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOPATH=C:\gopath

2021-01-13 13:40:42 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);

2021-01-13 14:59:49 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-13 15:03:16 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://storage.googleapis.com/golang/go1.14.13.windows-amd64.zip'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'go.zip'; $sha256 = '18c5597d7648ce3872f4a0a7bc73a70c01b56b77feac5e5f80b2ecba0d231473'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash go.zip -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive go.zip -DestinationPath C:\; Write-Host 'Removing ...'; Remove-Item go.zip -Force; Write-Host 'Verifying install ("go version") ...'; go version; Write-Host 'Complete.';

2021-01-13 15:03:18 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) WORKDIR C:\gopath

Details
Created

2021-01-12 23:23:36 UTC

Size

298 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:b9a857cbf04d2c0d2f0f6b73e894b20a977a6d3b6edd9e27d080e03142954950 - 16.12% (48.1 MB)

[#001] sha256:d557ee20540b597f518df05bc6888778cfc92bf46040c701d4a622389feb6807 - 2.5% (7.45 MB)

[#002] sha256:3b9ca4f00c2e4896c65625d678544b764d7483dca9dcab92b62093db72f21d3e - 3.2% (9.53 MB)

[#003] sha256:667fd949ed9338da3c1e09f9b75408c214368c637c448e0fd839467f6f7717b5 - 16.57% (49.4 MB)

[#004] sha256:547cc43be03d30dadf175bfd9e0e67b4ee2ba5bc2b948a071c1181566f700b7c - 21.97% (65.5 MB)

[#005] sha256:d5406b00d25c378538e3c234ef0c40e4769325258398c33c32cf675d7d3119ed - 39.65% (118 MB)

[#006] sha256:773db0c0d8914bc50b68393e52e60a796068332ff4e2da815ff3f8c58be10d1d - 0.0% (126 Bytes)


History
2021-01-12 00:32:36 UTC

/bin/sh -c #(nop) ADD file:53e587afdbeaee60cc14bd95907f14c8303c04b98c72f98e2c54d4343f15dd38 in /

2021-01-12 00:32:37 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 03:57:25 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-01-12 03:57:32 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-01-12 03:57:54 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-01-12 23:22:31 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-01-12 23:22:31 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 23:23:21 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 23:23:34 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 23:23:35 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 23:23:35 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-01-12 23:23:36 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 23:23:36 UTC

/bin/sh -c #(nop) WORKDIR /go

Details
Created

2021-01-13 14:59:35 UTC

Size

2.43 GB

Content Digest
Environment
GIT_DOWNLOAD_SHA256

8f65208f92c0b4c3ae4c0cf02d4b5f6791d539cd1a07b2df62b7116467724735

GIT_DOWNLOAD_URL

https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/MinGit-2.23.0-64-bit.zip

GIT_TAG

v2.23.0.windows.1

GIT_VERSION

2.23.0

GOLANG_VERSION

1.14.13

GOPATH

C:\gopath


Layers

[#000] sha256:4612f6d0b889cad0ed0292fae3a0b0c8a9e49aff6dea8eb049b2386d9b07986f - 65.87% (1.6 GB)

[#001] sha256:4dcc9a9b9e680514ef3fdfcc2ce08a3768f9e412703faa137f4a7c8297600052 - 27.5% (684 MB)

[#002] sha256:e00081a98bb2679c3c5f469e09d475980133a20987f9cae4cf4f7aedf59f9d8f - 0.0% (1.13 KB)

[#003] sha256:ad72ac4b6931b207a545d6d62fda35143222f3144778d4338ba25345066dce83 - 0.0% (1.1 KB)

[#004] sha256:fa315e63f98a74b6d8eaa632289849e8ec86de24cc05b5a05e0f5e60fef47ca1 - 0.0% (1.16 KB)

[#005] sha256:32646dc4c31ba7b4756ec7a55372b0b826608da90c73a1b0e70be1ec400e5cd9 - 0.0% (1.1 KB)

[#006] sha256:316e012143f550ba0c16a6368ae3695a74a56b153468e98d9c463221448e557b - 0.0% (1.11 KB)

[#007] sha256:7de36418fb6d968516c8374e5baf49e2bce6bbab4a107753c235e67c36187e16 - 1.32% (32.9 MB)

[#008] sha256:349aa2cb74f5d5cc343c42d6ba9fec62a6885cedcc0f07995fa77e3f68c6ac75 - 0.0% (1.11 KB)

[#009] sha256:1384ca1dabb9f23cb13f29f907b3a436e7676da86a825631d876e4a204898b47 - 0.01% (294 KB)

[#010] sha256:dd692f50992e95951179099523c59804d3cf4ecbe39e8da8a4cdfc953d2199d7 - 0.0% (1.1 KB)

[#011] sha256:2674f2840acdd3805b0992b93b881997f5593c922fdf61a017de1f554b78adec - 5.29% (132 MB)

[#012] sha256:3000b2541156250ea280a90632091d3cce6ccb2c53c9eedf8f46973bb9e71634 - 0.0% (1.26 KB)


History
2020-05-07 05:09:25 UTC

Apply image 1809-RTM-amd64

2021-01-08 08:50:52 UTC

Install update 1809-amd64

2021-01-13 13:13:16 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

2021-01-13 13:32:54 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_VERSION=2.23.0

2021-01-13 13:32:55 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_TAG=v2.23.0.windows.1

2021-01-13 13:32:55 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_URL=https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/MinGit-2.23.0-64-bit.zip

2021-01-13 13:32:56 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_SHA256=8f65208f92c0b4c3ae4c0cf02d4b5f6791d539cd1a07b2df62b7116467724735

2021-01-13 13:34:00 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:GIT_DOWNLOAD_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:GIT_DOWNLOAD_URL -OutFile 'git.zip'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:GIT_DOWNLOAD_SHA256); if ((Get-FileHash git.zip -Algorithm sha256).Hash -ne $env:GIT_DOWNLOAD_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive -Path git.zip -DestinationPath C:\git\.; Write-Host 'Removing ...'; Remove-Item git.zip -Force; Write-Host 'Updating PATH ...'; $env:PATH = 'C:\git\cmd;C:\git\mingw64\bin;C:\git\usr\bin;' + $env:PATH; [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ("git version") ...'; git version; Write-Host 'Complete.';

2021-01-13 13:34:01 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOPATH=C:\gopath

2021-01-13 13:34:23 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);

2021-01-13 13:56:55 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-13 14:59:33 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://storage.googleapis.com/golang/go1.14.13.windows-amd64.zip'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'go.zip'; $sha256 = '18c5597d7648ce3872f4a0a7bc73a70c01b56b77feac5e5f80b2ecba0d231473'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash go.zip -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive go.zip -DestinationPath C:\; Write-Host 'Removing ...'; Remove-Item go.zip -Force; Write-Host 'Verifying install ("go version") ...'; go version; Write-Host 'Complete.';

2021-01-13 14:59:35 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) WORKDIR C:\gopath

Details
Created

2021-01-12 13:25:17 UTC

Size

258 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:2663f95eeaf3e5f20b51c12003bb968c3590794bc6eb385f9e448a620c063beb - 17.77% (45.9 MB)

[#001] sha256:d00face3f5d2c20e2d27bb8a18bc2970f142fcd36b1aa94a95004cb93990e3bf - 2.72% (7.02 MB)

[#002] sha256:f4a678d54f3a9324d0c090e05019af611bbe80cf104f7762f5034da6ac4257ea - 3.58% (9.24 MB)

[#003] sha256:c227fef8ac09a8d6728bb05fe2d2bab3a83fd4dccbee20b5f35d988cbb53a01b - 18.31% (47.3 MB)

[#004] sha256:1f310365a5b4be0622861b4cc6f45181da167de3e3675f9f5998456c04976154 - 19.21% (49.6 MB)

[#005] sha256:76c9ee9ed64040a00b3b8015479ce25607d90e5e704f17e1b71d0c2a97314756 - 38.42% (99.2 MB)

[#006] sha256:995c4c6e35039690a43e7c1cd6a8dc68828fd0b566fa72c77abc0b38a26f77c8 - 0.0% (155 Bytes)


History
2021-01-12 00:51:09 UTC

/bin/sh -c #(nop) ADD file:6bb5740487b2a3dbdcfe226dc1b844c4b3586f92824989273c94f58a7be61521 in /

2021-01-12 00:51:11 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 01:28:25 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-01-12 01:28:43 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-01-12 01:29:34 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-01-12 13:14:53 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-01-12 13:14:56 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 13:22:05 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 13:25:09 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 13:25:13 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 13:25:14 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-01-12 13:25:16 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 13:25:17 UTC

/bin/sh -c #(nop) WORKDIR /go

Details
Created

2021-01-12 19:51:22 UTC

Size

253 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:d8925d905dadf63fa0ff74be912443a1cf8cd72ea5543317b0e22067d39ef948 - 17.32% (43.7 MB)

[#001] sha256:abd9c5a6d77413d17345fcf1f89b9dde2f3d9d6157bd070d4093cfef30107add - 2.68% (6.77 MB)

[#002] sha256:22e1f8e87a65e3a71764ea79b951f915c90a885dfd516f61e57d81745acaf272 - 3.53% (8.91 MB)

[#003] sha256:d43213eb5a44e08394e2dfcfb96a0577df6dea9ae20ef636053cf840a14d7cad - 17.88% (45.2 MB)

[#004] sha256:e230a9dc5b7d6af1fad8076c109e8ff819f32761931cd9ddef1356053f6ed3db - 20.08% (50.7 MB)

[#005] sha256:8590ba5515f46e912dce781178d2c45f9aff2023355dc89aeeba4883fb4ddbce - 38.52% (97.3 MB)

[#006] sha256:2b5d95db60f32873067833688ab5e33a07a6786cdaa80386413d2c09fdb4c40f - 0.0% (155 Bytes)


History
2021-01-12 00:00:37 UTC

/bin/sh -c #(nop) ADD file:216371f6fe8c803a0191f84e555c809a3301d1344c62b831dddb5e0c595fe0ef in /

2021-01-12 00:00:46 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 01:14:54 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-01-12 01:15:06 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-01-12 01:15:48 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-01-12 19:49:12 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-01-12 19:49:13 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 19:50:49 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 19:51:15 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 19:51:17 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 19:51: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-01-12 19:51:21 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 19:51:22 UTC

/bin/sh -c #(nop) WORKDIR /go

Details
Created

2021-01-12 20:19:25 UTC

Size

270 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:6e5587ff5efa4e647ae927194fac9b961a68d46b23b68a3119c90016e58f17aa - 17.39% (46.9 MB)

[#001] sha256:439dbbb05ea0aa8484ae8a51d0fbb1c7609176a1b0d3f15dad69d52e9a83af66 - 2.72% (7.33 MB)

[#002] sha256:3b89c8b4e5b232c040d5905808ee62cdfcc9d697de10183d6bc4767468859d92 - 3.53% (9.52 MB)

[#003] sha256:4a53f70a43c3c83782c39cad75aa09ccddb893b3fd54762416fca4d48a3b44b5 - 18.44% (49.7 MB)

[#004] sha256:d56052def468cb5c58be8e760350fc9a45d39c59eee37508312766e5c982dd99 - 22.12% (59.7 MB)

[#005] sha256:d8ecc965e65cd77dacb637d10a22cfbd8d472f2348927e56bc846605dc7fcbf1 - 35.81% (96.6 MB)

[#006] sha256:5e74c962dfb24c724c794ac4f24216e516c38e3b929e575fc9d372c7c83c0bb0 - 0.0% (156 Bytes)


History
2021-01-12 00:40:39 UTC

/bin/sh -c #(nop) ADD file:849d424ecc8572facb3ca68eff836dce211bc677cb32d3c3eaa129d364d33878 in /

2021-01-12 00:40:43 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 01:23:26 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-01-12 01:23:41 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-01-12 01:24:24 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-01-12 20:17:26 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-01-12 20:17:29 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 20:18:56 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 20:19:15 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 20:19:20 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 20:19:21 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-01-12 20:19:24 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 20:19:25 UTC

/bin/sh -c #(nop) WORKDIR /go

Details
Created

2021-01-12 16:36:26 UTC

Size

260 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:1d0e08cc8efbf09ece45929fdb6f02d6bf57202bf8653e71adc6e782f0e67c68 - 17.96% (46.8 MB)

[#001] sha256:999a474ffc3c8bea221f1d8cd6242dede4fd59e39591c684e2e1a3f175dfaabd - 2.65% (6.9 MB)

[#002] sha256:9ba100e51ff51674e6e530f33b8b3dab47d6c95c36fb384daf75f67cfa1d36de - 3.67% (9.55 MB)

[#003] sha256:f8e406dcf9e8aa8be41fcde4b18a0478cad031260659d026dd4e43ae5dc99b80 - 18.62% (48.5 MB)

[#004] sha256:6339e0b01cf74f963b4dac47fc8c21200d20e5ca2c2f6960442abd8e5fdeb876 - 20.01% (52.1 MB)

[#005] sha256:887548c0274ce066b9ff7aa16ead515ac076517585c10d6a42a0ea783f7fc443 - 37.09% (96.6 MB)

[#006] sha256:726f9632062e791f374cb973841769a8ea042511c8ce619aef1149c14c7379a6 - 0.0% (126 Bytes)


History
2021-01-12 01:15:58 UTC

/bin/sh -c #(nop) ADD file:1ea3ca1d00229eb0be06bc2fa54f95822e906deb654f8f3bf5d6aa49dd884f6f in /

2021-01-12 01:15:59 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 01:50:27 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-01-12 01:50:43 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-01-12 01:51:33 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-01-12 16:12:50 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-01-12 16:12:51 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 16:28:44 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 16:36:22 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 16:36:24 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 16:36:24 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-01-12 16:36:26 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 16:36:26 UTC

/bin/sh -c #(nop) WORKDIR /go

Details
Created

2021-01-12 20:01:47 UTC

Size

290 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:f55666525fdfb3052e2a27209639b4e83b4d5c8ca7cfcff8525f50f63345cc0d - 17.79% (51.6 MB)

[#001] sha256:3a708f84b552354f6bd7c8b378ef1e6115050807ae6691c9d0673313a9bc6efe - 2.71% (7.87 MB)

[#002] sha256:7316456c5112c2c378cba4cdaa76f5ef1a261726c4c1bbbb78d3e55412bdcbbb - 3.52% (10.2 MB)

[#003] sha256:43f5c800c03748ea756d5667879a46f6fc464545603bff606353bb4fc2039985 - 18.88% (54.8 MB)

[#004] sha256:9020b6f08e528d8da40ae076803bb543c9c9124f9c9cb7374f0600c82f03c42d - 24.18% (70.2 MB)

[#005] sha256:9e21c0ba4792d6d30051826fc444c987f532d8a3016a69351c06afa65f1ad35d - 32.92% (95.5 MB)

[#006] sha256:42c9f8e957e90f45e7b2d526664ab2ad99f804523e3062e58e55ef1a36c8137a - 0.0% (155 Bytes)


History
2021-01-12 00:24:16 UTC

/bin/sh -c #(nop) ADD file:cebd019e462ded2318bdc6bbfa649ddd11dc15d005b0f330876282e08143e069 in /

2021-01-12 00:24:28 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 01:59:39 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-01-12 02:00:56 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-01-12 02:03:45 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-01-12 19:57:21 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-01-12 19:57:31 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 20:00:36 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 20:01:04 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 20:01:19 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 20:01: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

2021-01-12 20:01:36 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 20:01:47 UTC

/bin/sh -c #(nop) WORKDIR /go

Details
Created

2021-01-12 15:14:28 UTC

Size

267 MB

Content Digest
Environment
GOLANG_VERSION

1.14.13

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:15e71c2ae22f7fff5a03d5a2c1ccbee8b2526b04a21e1cff46ad70648272e773 - 17.49% (46.7 MB)

[#001] sha256:1aaa59f720edfbbd3dceca4a0253274b1730139ee512333e7ec6c74c77ae1a59 - 2.64% (7.04 MB)

[#002] sha256:d930b55daa1d1253012758814d63e3c45e1eda80229b838a38e804e1aa47bbe2 - 3.53% (9.43 MB)

[#003] sha256:950e64959dfb388a9874bb74ace538bd9da65024ea4fd0f99e2b995c57f1d976 - 18.35% (49 MB)

[#004] sha256:26fdb6f58c92c31b8a36f673fb66b9a831535bb25837f4f9f4b625fdd7c7cb96 - 20.28% (54.1 MB)

[#005] sha256:575ab4480385ef0f8cd4cccaa08065d99cd3f231ca6a667af23c8fcde8b4b700 - 37.72% (101 MB)

[#006] sha256:6659296d28cca56122ddd3778d450ad7380884317aa67b42503c71ed8ff16efb - 0.0% (156 Bytes)


History
2021-01-12 00:42:07 UTC

/bin/sh -c #(nop) ADD file:7d0e79f65f07030b440bfbb8e3fac979eddeed967c5e47ac30b5c2aa5e0144b1 in /

2021-01-12 00:42:09 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-01-12 02:10:09 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-01-12 02:10:15 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-01-12 02:10:43 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-01-12 15:12:16 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-01-12 15:12:19 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-01-12 15:13:47 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.14.13

2021-01-12 15:14:22 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') arch='linux-amd64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-amd64.tar.gz'; sha256='bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992'; ;; 'armhf') arch='linux-armv6l'; url='https://storage.googleapis.com/golang/go1.14.13.linux-armv6l.tar.gz'; sha256='cee8785fad978693c7b68ea635e76412a0a44917c3d58efa82b2edbf538a2868'; ;; 'arm64') arch='linux-arm64'; url='https://storage.googleapis.com/golang/go1.14.13.linux-arm64.tar.gz'; sha256='445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb'; ;; 'i386') arch='linux-386'; url='https://storage.googleapis.com/golang/go1.14.13.linux-386.tar.gz'; sha256='a168c7e03e305d33a5651acb5bfdbfb5141053a0d98f06af3e1e5081167af963'; ;; 'ppc64el') arch='linux-ppc64le'; url='https://storage.googleapis.com/golang/go1.14.13.linux-ppc64le.tar.gz'; sha256='1bd057adc1004b22e530ac738ccb077b56f89e84209df9bb755aacb37668c547'; ;; 's390x') arch='linux-s390x'; url='https://storage.googleapis.com/golang/go1.14.13.linux-s390x.tar.gz'; sha256='263a9bef1b8d695cc459b83fd7c4cee06f7e435adec0d0c948309b0655d0770e'; ;; *) arch='src'; url='https://storage.googleapis.com/golang/go1.14.13.src.tar.gz'; sha256='ba1d244c6b5c0ed04aa0d7856d06aceb89ed31b895de6ff783efb1cc8ab6b177'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2; ;; esac; 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 ha.pool.sks-keyservers.net --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 [ "$arch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./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-01-12 15:14:27 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2021-01-12 15:14:27 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-01-12 15:14:28 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2021-01-12 15:14:28 UTC

/bin/sh -c #(nop) WORKDIR /go

Danger Zone
Delete Tag

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.

Delete