Namespace
library
Image / Tag
python:3.14.0a7-windowsservercore-1809
Content Digest
sha256:5cf937b03251fd75f30f1c74b5a5841f391be7bcfaf8f6549f32832ca9c61171
Details
Created

2025-04-18 03:29:05 UTC

Size

2.07 GB

Content Digest
Environment
PYTHONIOENCODING

UTF-8

PYTHON_SHA256

944e24cde04e4067ae728578afc8fbc78d9a0d735e9c9348720c857d61bd8e1e

PYTHON_VERSION

3.14.0a7


Layers

[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 77.34% (1.6 GB)

[#001] sha256:632102e3f287de7b6ffd6cab740fb7afe94ac8418060651b0954506aeecc48f1 - 20.02% (425 MB)

[#002] sha256:3c4142d8557db621817670ce8343d7ab22fe3257079e68d7d4fdfcb4682cbb7d - 0.0% (1.26 KB)

[#003] sha256:5f4c08cefd839fedb59cf6844a62686aec7e8858d98061068e4f0cc95475d96f - 0.0% (1.27 KB)

[#004] sha256:943758cdba5582dc93e5598ed72a3177e828514060b195c751fdc5421b1aa63a - 0.0% (1.26 KB)

[#005] sha256:f813a73672ac57f6fcf70dfdde99194a419031b1d905e9873769715e96258cc4 - 0.0% (1.26 KB)

[#006] sha256:5874b56b8da22598b40e38f56e4f8c7428eb4f3ba3d6bd22d1dd02337992f725 - 2.64% (56 MB)

[#007] sha256:dea1568e455fec3191ec6d3eb4541e5c735d24138799bf5bac0f24205760d3ae - 0.0% (1.27 KB)


History
2024-09-06 01:15:31 UTC

Apply image 10.0.17763.6293

2025-04-15 01:47:49 UTC

Install update 10.0.17763.7249

2025-04-18 03:27:44 UTC

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

2025-04-18 03:27:46 UTC

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

2025-04-18 03:27:47 UTC

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

2025-04-18 03:27:48 UTC

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

2025-04-18 03:29:05 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.'

2025-04-18 03:29:05 UTC

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