Namespace
library
Image / Tag
golang:1.8-rc-nanoserver
Content Digest
sha256:e95544578ee816c0481b30c6dbc5a224039694de5b19e1c84387ed3033b3afdd
Details
Created

2017-02-10 00:27:50 UTC

Size

408 MB

Content Digest
Environment
GOLANG_DOWNLOAD_SHA256

9ac7224a79dfd2d390ff4c5202f09fae2a5b07e9b0ebf32913979635e7143383

GOLANG_DOWNLOAD_URL

https://golang.org/dl/go1.8rc3.windows-amd64.zip

GOLANG_VERSION

1.8rc3

GOPATH

C:\gopath


Layers

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

[#001] sha256:3ac17e2e6106d09a44642a437c318092eddd284afea0b4e707e89f6cec7a18ef - 18.86% (76.9 MB)

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

[#003] sha256:110ea2ec6249baec774cf0bb6d4c46f383320ec4ad5e0a72597d9c1ef1834b32 - 0.0% (967 Bytes)

[#004] sha256:15068a1a55e80e8468c9cd1bfd0c5b53faf86bd29b5b2a6692b41986129b29a8 - 0.2% (845 KB)

[#005] sha256:dedd1e8252608ae6c5f9002e5de0506da991e30a29afd1e51e6be417f48bbc85 - 0.0% (945 Bytes)

[#006] sha256:3accb584a71c186dd14ab2c14523222efb87276aa3a7a335ac3274ad4d88698d - 0.0% (964 Bytes)

[#007] sha256:57b9b38f4151bbce0b92987c522ec6519ce025445d21f071b926632a6b657458 - 0.0% (954 Bytes)

[#008] sha256:99c32a3a77d3511589b1c2ca4efd765694b94fb78f0db750c66f2eafe17ae519 - 21.83% (89 MB)

[#009] sha256:96ff02147674081174b08a2e7775a3a999cc1f00813078deb03572cca9c1b33b - 0.0% (952 Bytes)


History
2017-01-13 17:53:28 UTC

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

2017-01-13 17:53:31 UTC

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

2017-01-13 17:54:11 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-02-10 00:24:12 UTC

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

2017-02-10 00:24:14 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOLANG_DOWNLOAD_URL=https://golang.org/dl/go1.8rc3.windows-amd64.zip

2017-02-10 00:24:16 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOLANG_DOWNLOAD_SHA256=9ac7224a79dfd2d390ff4c5202f09fae2a5b07e9b0ebf32913979635e7143383

2017-02-10 00:27:48 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:GOLANG_DOWNLOAD_URL); Invoke-WebRequest -Uri $env:GOLANG_DOWNLOAD_URL -OutFile 'go.zip'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:GOLANG_DOWNLOAD_SHA256); if ((Get-FileHash go.zip -Algorithm sha256).Hash -ne $env:GOLANG_DOWNLOAD_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-02-10 00:27:50 UTC

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