Namespace
library
Image / Tag
python:3.15.0a5-windowsservercore-ltsc2025
Content Digest
sha256:23bd00800581de2981dd690db54d215b1755b0519da3ee9703235e9d5417dbef
Details
Created

2026-02-10 23:01:01 UTC

Size

1.89 GB

Content Digest
Environment
PYTHONIOENCODING

UTF-8

PYTHON_SHA256

9cf3a702a049e3b8da1d05fc733415c6839f2c142d59ba1f5e89aa3c6520c2a9

PYTHON_VERSION

3.15.0a5


Layers

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

[#001] sha256:456534216d0c12d9314cda831989d54bb3f542d7d43d9772ba40654db6dbd7bc - 21.78% (421 MB)

[#002] sha256:3ef73c96d3477d0e2f9c37003a22dd33fc423f4633c667bc514de5bc85c477e7 - 0.0% (1.29 KB)

[#003] sha256:06d0de2b2ef69a1666cbad404b462c4f2589e3af0f512981055d16d8b9343846 - 0.0% (1.3 KB)

[#004] sha256:b142b325afcf810d2a1cbd333a2683742a75a8c6d2ca59ff0dfee6f4d2b00d5c - 0.0% (1.33 KB)

[#005] sha256:d9ff6aa956a18d9d9f8900d2a4c16458859b101763a68fb79d0f714d6c995ce3 - 0.0% (1.3 KB)

[#006] sha256:f161d98b6ce110cd177f3b5271e3e8f99c30c4e0f70f7051af3938967a001bc9 - 3.11% (60.2 MB)

[#007] sha256:4da00c4f71169a9c8f30bf292b6c913309084337c53cca77dceace3d28b01101 - 0.0% (1.3 KB)


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

Apply image 10.0.26100.32230

2026-02-06 22:21:49 UTC

Install update 10.0.26100.32370

2026-02-10 22:53:49 UTC

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

2026-02-10 23:00:17 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8

2026-02-10 23:00:17 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.15.0a5

2026-02-10 23:00:18 UTC

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

2026-02-10 23:01:00 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f ($env:PYTHON_VERSION -replace '[a-z]+[0-9]*$', ''), $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_SHA256); if ((Get-FileHash python.exe -Algorithm sha256).Hash -ne $env:PYTHON_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Installing ...'; $exitCode = (Start-Process python.exe -Wait -NoNewWindow -PassThru -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=1', 'Include_test=0' ) ).ExitCode; if ($exitCode -ne 0) { Write-Host ('Running python installer failed with exit code: {0}' -f $exitCode); Get-ChildItem $env:TEMP | Sort-Object -Descending -Property LastWriteTime | Select-Object -First 1 | Get-Content; exit $exitCode; } $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.exe -Force; Remove-Item $env:TEMP/Python*.log -Force; $env:PYTHONDONTWRITEBYTECODE = '1'; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.'

2026-02-10 23:01:01 UTC

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