Namespace
library
Image / Tag
golang:1.9-nanoserver
Content Digest
sha256:70577d7f3fa2df1ec16f4ca49649b626a9e6e3235a8fa2293f8b548be06d6e0e
Details
Created

2018-08-23 11:54:34 UTC

Size

519 MB

Content Digest
Environment
GOLANG_VERSION

1.9.7

GOPATH

C:\gopath


Layers

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

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

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

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

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

[#005] sha256:d89b9f8afcac7769fe74fb5c6cabb57b5d28c9aea3e118a41ee11275fae520b4 - 0.0% (952 Bytes)

[#006] sha256:6dd30364458be073dbb1414acd22a2567b8641b471c30218869128ff80e69282 - 22.56% (117 MB)

[#007] sha256:d17ffd35f7e8e23e0c5aed853fab7721c0f4ac39308fba0c2e3097219598b67b - 0.0% (1.13 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:49:26 UTC

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

2018-08-23 11:54:32 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 = '8db4b21916a3bc79f48d0611202ee5814c82f671b36d5d2efcb446879456cd28'; 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:54:34 UTC

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