Namespace
library
Image / Tag
python:3.14.3-windowsservercore-ltsc2025
Content Digest
sha256:a5d8f4a611bdcd0287bb96606283ef1fe3135e3765c5658b01a0dac6ac4016c0
Details
Created

2026-03-10 22:10:07 UTC

Size

2 GB

Content Digest
Environment
PYTHONIOENCODING

UTF-8

PYTHON_SHA256

b68ad91421afbbd1a628105199c8c5f6179b21ba799067a8d8c0bbac3b7defb0

PYTHON_VERSION

3.14.3


Layers

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

[#001] sha256:b887ef086b6ed6d2abdb72b842528552ef42d0e668e96556db2d01a9b71bfd77 - 26.05% (532 MB)

[#002] sha256:81554eae26db4c1974c22c8ad6c1f1d41dab3672c63880fb71e3821a8288fe2b - 0.0% (1.36 KB)

[#003] sha256:d28fffb6b7444c8388fbc7341764fcce4b01dc012294b87116b400c2429bfe11 - 0.0% (1.26 KB)

[#004] sha256:3e5f3fa41ad310a6166c4d5c5c3f57c516c88ecbd91a2f06da619815cc99be4f - 0.0% (1.26 KB)

[#005] sha256:0d8b72848cd514d74a6ef7916fadd168623f69755a3f6edeb0e56da0baac89f4 - 0.0% (1.29 KB)

[#006] sha256:0f9527e3b6a077fa6b08eb508697d67268d9672fd1451371af32faa1c62de898 - 2.85% (58.2 MB)

[#007] sha256:fc8ef89957cf97102ecf775924da44552cd8e2f623732961005ffd289d15b0f0 - 0.0% (1.26 KB)


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

Apply image 10.0.26100.32230

2026-03-06 02:07:33 UTC

Install update 10.0.26100.32522

2026-03-10 21:58:13 UTC

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

2026-03-10 22:09:28 UTC

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

2026-03-10 22:09:28 UTC

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

2026-03-10 22:09:29 UTC

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

2026-03-10 22:10:07 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-03-10 22:10:07 UTC

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