Namespace
library
Image / Tag
golang:1.10.8-nanoserver
Content Digest
sha256:562d38ede26899e53c01497a209ed4f755620796fa92b3aaa368f2755d367023
Details
Created

2019-01-24 11:13:09 UTC

Size

506 MB

Content Digest
Environment
GOLANG_VERSION

1.10.8

GOPATH

C:\gopath


Layers

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

[#001] sha256:6f2071dcd7294537bba55b3061704ef1370748e91982193b9e0fa4ebc114589b - 34.42% (174 MB)

[#002] sha256:1f72e042ba5d72d27b42026712df029a6a160e9acc59f0ec444c96e610f275d3 - 0.0% (956 Bytes)

[#003] sha256:f276a017370ba20669b97b2114e04abcb6fbc550935652a2fda2f21b007ceb70 - 0.0% (945 Bytes)

[#004] sha256:cd7c4aea0902cfd13e0323d30ee7bee7af103db8b0fa1448d30ad26575fd3279 - 0.18% (921 KB)

[#005] sha256:1a4c09ceae4d022f88104edb41e563f021f5ed6d2a5718b343131b363591c2d8 - 0.0% (944 Bytes)

[#006] sha256:d04eec7671b393aee70ee94351b178d98884ce7acfe3a9c43253ff90e243afdb - 17.8% (90.1 MB)

[#007] sha256:83e5404d503e7b3ab6d2c809fe0375fd9699c30c9bc20b173e7755600ed4d0fe - 0.0% (1.13 KB)


History
2018-09-17 20:04:15 UTC

Apply image 10.0.14393.0

2018-10-09 18:02:39 UTC

Install update 10.0.14393.2551

2018-12-25 18:43:21 UTC

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

2018-12-25 22:29:52 UTC

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

2018-12-25 22:30:33 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;

2019-01-24 11:08:32 UTC

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

2019-01-24 11:13: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 = 'ab63b55c349f75cce4b93aefa9b52828f50ebafb302da5057db0e686d7873d7a'; 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.';

2019-01-24 11:13:09 UTC

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