Namespace
library
Image / Tag
golang:1.25.10-windowsservercore-ltsc2025
Content Digest
sha256:ee3ba3449e1c9befddfa4e957f18650c2898244fbe8f06b1051417d9792c6274
Details
Created

2026-05-12 23:49:04 UTC

Size

2.16 GB

Content Digest
Environment
GIT_DOWNLOAD_SHA256

11e8f462726827acccc7ecdad541f2544cbe5506d70fef4fa1ffac7c16288709

GIT_DOWNLOAD_URL

https://github.com/git-for-windows/git/releases/download/v2.48.1.windows.1/MinGit-2.48.1-64-bit.zip

GIT_TAG

v2.48.1.windows.1

GIT_VERSION

2.48.1

GOLANG_VERSION

1.25.10

GOPATH

C:\go


Layers

[#000] sha256:0938cf51b672b81c9804d1d5f0c57031c931f41b279270e84820c63642d6a3bd - 65.64% (1.42 GB)

[#001] sha256:f787ad06f38db673c3d304f21c09a82ff9a1ced32062515ea52fdb0383457b24 - 29.43% (651 MB)

[#002] sha256:501f68ee4ec3df8e709de0c6a68dead6e0f2d4a50e602e1f955eb2c615012770 - 0.0% (1.29 KB)

[#003] sha256:fcb8338d05bf06a3d100be345053efad5bc4734ae64ce1bbbda68edcc25ad629 - 0.0% (1.31 KB)

[#004] sha256:0cb6ea78ee3ae2864b546ff7aa4b4ea99cbbc9b6d367d99ec62668c31c6c7a97 - 0.0% (1.3 KB)

[#005] sha256:405c1d3ce878151ba53b0416a37f12550233f2fc976b7464e08a6e537a47c24d - 0.0% (1.29 KB)

[#006] sha256:aabd2a0ac402dac5ca9f2d63a1b06f2dba03a0045c753322b8a08198ffed3e59 - 0.0% (1.29 KB)

[#007] sha256:5e9a8efe7cd4fd31ae2ee13f6f0c061b47e2c0b6530d698ee47f07e8d9166b8d - 2.21% (48.9 MB)

[#008] sha256:73cdec9f6711e36572140d4be584d8208b108d51f1f595e4f756fdc963e7721a - 0.0% (1.29 KB)

[#009] sha256:f64e4f985f0d122a4e709016abec7c10b42bc40a10f1b4e577a119514d2c6ed8 - 0.02% (359 KB)

[#010] sha256:1ac773d1b235a9530046695002ecb29060ca41d28a33583873c4238e4597f491 - 0.0% (1.29 KB)

[#011] sha256:1a9064a9bbc6c0c4c2b011dbbbf1b986c80daa81de703a649b761f119f7aa851 - 2.7% (59.8 MB)

[#012] sha256:9e60e6ad037efc167c0b744ff2e40ff44de706ca7677ccd6745720418a8e58c8 - 0.0% (1.44 KB)


History
2026-01-11 09:57:36 UTC

Apply image 10.0.26100.32230

2026-05-10 10:08:54 UTC

Install update 10.0.26100.32860

2026-05-12 23:37:12 UTC

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

2026-05-12 23:47:20 UTC

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

2026-05-12 23:47:21 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_TAG=v2.48.1.windows.1

2026-05-12 23:47:22 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_URL=https://github.com/git-for-windows/git/releases/download/v2.48.1.windows.1/MinGit-2.48.1-64-bit.zip

2026-05-12 23:47:22 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_SHA256=11e8f462726827acccc7ecdad541f2544cbe5506d70fef4fa1ffac7c16288709

2026-05-12 23:47:35 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:GIT_DOWNLOAD_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:GIT_DOWNLOAD_URL -OutFile 'git.zip'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:GIT_DOWNLOAD_SHA256); if ((Get-FileHash git.zip -Algorithm sha256).Hash -ne $env:GIT_DOWNLOAD_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive -Path git.zip -DestinationPath C:\git\.; Write-Host 'Removing ...'; Remove-Item git.zip -Force; Write-Host 'Updating PATH ...'; $env:PATH = 'C:\git\cmd;C:\git\mingw64\bin;C:\git\usr\bin;' + $env:PATH; [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ("git version") ...'; git version; Write-Host 'Complete.';

2026-05-12 23:47:36 UTC

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

2026-05-12 23:47:41 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\bin;C:\Program Files\Go\bin;{1}' -f $env:GOPATH, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);

2026-05-12 23:47:41 UTC

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

2026-05-12 23:49:04 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://dl.google.com/go/go1.25.10.windows-amd64.zip'; Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'go.zip'; $sha256 = 'ca37af2dadd8544464f1a9ca7c3886499d1cdfcb263855d0a1d71f194b2bd222'; 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 'Moving ...'; Move-Item -Path C:\go -Destination 'C:\Program Files\Go'; Write-Host 'Removing ...'; Remove-Item go.zip -Force; Write-Host 'Verifying install ("go version") ...'; go version; Write-Host 'Complete.';

2026-05-12 23:49:04 UTC

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