Namespace
library
Image / Tag
golang:1.9beta1-nanoserver
Content Digest
sha256:30e7739e445844725da4156332653797659ad872c4079b86ccff5301d09ba0cc
Details
Created

2017-06-15 17:35:56 UTC

Size

449 MB

Content Digest
Environment
GOLANG_VERSION

1.9beta1

GOPATH

C:\gopath


Layers

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

[#001] sha256:6a43ac69611f40511708beba10dfe6fbe3e266ca933b6fd49c87a9f31f46f46c - 24.62% (111 MB)

[#002] sha256:acc75acac61e9635ae7c57f4d74b6ac6a2efef41d7b17052ff6f5bc0fb92e960 - 0.0% (968 Bytes)

[#003] sha256:eb7167106ea4983c584c43960a695bcccefce2f7f604dc1f1cfd26907d00d2f8 - 0.0% (958 Bytes)

[#004] sha256:19a7544570f668ef6cf0e481c4c3a5ea4da04a6611b622ef4dee84176030f987 - 0.19% (864 KB)

[#005] sha256:28bce2bfd989948ff92edb473ccd998e55229104226fd9d9e617e984ad072332 - 0.0% (958 Bytes)

[#006] sha256:10b496523f0824de5d595fdb6313d7c1b6351af877aaa833f1c9a2471a36733e - 21.58% (97 MB)

[#007] sha256:a4da422828de59be0a7130d1f12eb29c5d42351f3929f673f7fd5539b75bf972 - 0.0% (955 Bytes)


History
2016-11-20 03:39:18 -0800

Apply image 10.0.14393.0

2017-04-07 02:40:17 -0700

Install update 10.0.14393.1066

2017-04-26 19:37:26 UTC

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

2017-04-26 19:37:29 UTC

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

2017-04-26 19:38:59 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;

2017-06-15 17:32:40 UTC

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

2017-06-15 17:35:53 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 = '9cec41dc5825ad1f7ad8955ae4f6d0ec8ca598b3fcbf911943f5222179cb94a1'; 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.';

2017-06-15 17:35:56 UTC

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