Namespace
library
Image / Tag
golang:1.11.1-nanoserver
Content Digest
sha256:4a61f65a7d65bee92e6042c0760854af6f914112ffe6231b760f27cbe3242c8f
Details
Created

2018-10-03 09:49:45 UTC

Size

540 MB

Content Digest
Environment
GOLANG_VERSION

1.11.1

GOPATH

C:\gopath


Layers

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

[#001] sha256:b1b0c61be11f6d053756595f70211e6044137b150fc1cc23d52ee0852eaf9146 - 31.91% (172 MB)

[#002] sha256:d47ca3c2a708c20309f263de7441f23acb1e8b76c56c75bcc314d2af593e2d17 - 0.0% (951 Bytes)

[#003] sha256:2beb060d746862a2aeaaeb2e761a5fe91f07420d6d296322f895a574e265d086 - 0.0% (954 Bytes)

[#004] sha256:f865f947b98c9efc30d19e4f835306b3d3ba08dd6ce301f2cfb0b67ab93dd46c - 0.17% (929 KB)

[#005] sha256:4af742a096213a783479adf6650170a7cec386d135113f9b303bbc54d72d776b - 0.0% (951 Bytes)

[#006] sha256:1c54bbb92ce1b8b4dacd7020fbe28d0952b6bbfe45d9bb85eb4b811cb22fde0d - 23.25% (125 MB)

[#007] sha256:beabe250dcbfb291c02ae1580c8c64e37d866bdf4be8bf213adb74c6e0edcd2f - 0.0% (1.12 KB)


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

Apply image 10.0.14393.0

2018-09-11 16:53:25 UTC

Install update 10.0.14393.2485

2018-09-13 10:13:53 UTC

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

2018-10-03 09:43:07 UTC

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

2018-10-03 09:43:53 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-10-03 09:43:54 UTC

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

2018-10-03 09:49:44 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 = '230a08d4260ded9d769f072512a49bffe8bfaff8323e839c2db7cf7c9c788130'; 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-10-03 09:49:45 UTC

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