Namespace
library
Image / Tag
golang:1.11rc1-nanoserver
Content Digest
sha256:62a45b15cd7783d02e272d573e016f2a3ad8e712da022d393cacfd58cfefdbe7
Details
Created

2018-08-23 11:07:08 UTC

Size

578 MB

Content Digest
Environment
GOLANG_VERSION

1.11rc1

GOPATH

C:\gopath


Layers

[#000] sha256:bce2fbc256ea437a87dadac2f69aabd25bed4f56255549090056c1131fad0277 - 41.68% (241 MB)

[#001] sha256:4a14bdf6da80603aa5007acea8d5ea659958b0bd1b31d31078023ca0d1c8ee05 - 27.68% (160 MB)

[#002] sha256:82e4f9af58cb76c5ad8ef2e3e09f4256ab17e1c38cc0ed0d04cb7b509b76fe56 - 0.0% (950 Bytes)

[#003] sha256:b7db0e606747dad0f959f4b197a3d5689196710d305ce33f5070ef7c25b5be28 - 0.0% (953 Bytes)

[#004] sha256:014e815f07fec289d73b99033d1558f1e990b566bb274025a610e8b2d650680a - 0.15% (913 KB)

[#005] sha256:5c9078a55c0046538a1a191d29355b9befe7fd357bd0c2d654f7adb643687694 - 0.0% (948 Bytes)

[#006] sha256:05f9bf71088324319b0e90e223e94ebddf228c83d34487f85b51f0d13783866b - 30.49% (176 MB)

[#007] sha256:bd8474cd994b8ee320df9953ac4225cb7cd3694754f0362bc0ec40bda0a04ad5 - 0.0% (1.14 KB)


History
2016-12-13 10:47:17 UTC

Apply image 10.0.14393.0

2018-08-13 17:51:52 UTC

Install update 10.0.14393.2430

2018-08-15 09:43:51 UTC

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

2018-08-23 10:59:52 UTC

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

2018-08-23 11:00:46 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); setx /M PATH $newPath;

2018-08-23 11:00:48 UTC

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

2018-08-23 11:07:07 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://golang.org/dl/go{0}.windows-amd64.zip' -f $env:GOLANG_VERSION); Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'go.zip'; $sha256 = 'bcd482bdae421c580897ce0bb350f56679ebe676817ead572ee3a5942611bcc9'; 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 'Verifying install ("go version") ...'; go version; Write-Host 'Removing ...'; Remove-Item go.zip -Force; Write-Host 'Complete.';

2018-08-23 11:07:08 UTC

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