Namespace
library
Image / Tag
golang:1.8rc2-nanoserver
Content Digest
sha256:8d56bfaa33738878521533e7235bfbe14f1bb9045a72ff884af2a4794bd9fb71
Details
Created

2017-01-20 22:00:55 UTC

Size

408 MB

Content Digest
Environment
GOLANG_DOWNLOAD_SHA256

c5eadaec783fd01bbaf8e81aef1add83a7e5c125f50f6976ac31ab763bd0b49f

GOLANG_DOWNLOAD_URL

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

GOLANG_VERSION

1.8rc2

GOPATH

C:\gopath


Layers

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

[#001] sha256:3ac17e2e6106d09a44642a437c318092eddd284afea0b4e707e89f6cec7a18ef - 18.84% (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:499edc2ed3fceade1f63c2e9c2c142e650ad0be108143571fe24f179a3a4c467 - 0.0% (958 Bytes)

[#006] sha256:9cb9188ca3fbae85ff2ff4dd24f78a3836aa39a020ac6624a53a2f0ff572a2f7 - 0.0% (953 Bytes)

[#007] sha256:b762e2863e771c4792e1d3d4e572ca41b6fa3ab5f8c10e39de16735e093980ef - 0.0% (952 Bytes)

[#008] sha256:b865104437c6402a79ed2367c92ec95009c1883345b25096c265bcfc4a9ae319 - 21.89% (89.3 MB)

[#009] sha256:2306fa2367aaabe727ac5f11ef01ee3b5733081d8156421821be9228b98fe886 - 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-01-20 21:57:13 UTC

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

2017-01-20 21:57:15 UTC

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

2017-01-20 21:57:17 UTC

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

2017-01-20 22:00:51 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-01-20 22:00:55 UTC

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