Namespace
library
Image / Tag
golang:1.8.3-nanoserver
Content Digest
sha256:f94b210ba5032dc6035acdc73bd128b8f4cedb030ff8c39956b7af7a5603a85c
Details
Created

2017-09-14 23:44:06 UTC

Size

468 MB

Content Digest
Environment
GOLANG_VERSION

1.8.3

GOPATH

C:\gopath


Layers

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

[#001] sha256:5cd49617cf500abea7b9f47d82b70455d816ae6b497cabc1fc86a9522d19a828 - 28.63% (134 MB)

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

[#003] sha256:a7189c751637a60058895cc2f83f7e36bb647830ef1d84f7eb051a48cb1b30a5 - 0.0% (966 Bytes)

[#004] sha256:6c7fa03c5a848e64f5013024320fd3f70abe7b4d0824a75854cc7caa12bfdcc1 - 0.17% (807 KB)

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

[#006] sha256:190dee4c7c097a74db848087ec7e29d5007851a7a0e47e2c839c279fb51480b8 - 19.69% (92.1 MB)

[#007] sha256:062d305b5dbb306bc4d4a283dd8a7f4cb4e434e82b964ad011007d48de460c67 - 0.0% (1.15 KB)


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

Apply image 10.0.14393.0

2017-09-12 22:02:14 UTC

Install update 10.0.14393.1715

2017-09-13 09:11:48 UTC

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

2017-09-14 23:33:11 UTC

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

2017-09-14 23:33:28 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-09-14 23:40:57 UTC

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

2017-09-14 23:44:02 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 = 'de026caef4c5b4a74f359737dcb2d14c67ca45c45093755d3b0d2e0ee3aafd96'; 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-09-14 23:44:06 UTC

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