Namespace
library
Image / Tag
python:3.9.0b5-windowsservercore-1809
Content Digest
sha256:ce5f261d4dad3d14b865599266d0fa61b0366d53292df73380a41bfd7d6a4642
Details
Created

2020-08-11 20:39:09 UTC

Size

2.24 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

d4d62a0850fe0c2e6325b2cc20d818c580563de5a2038f917e3cb0e25280b4d1

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/5578af97f8b2b466f4cdbebe18a3ba2d48ad1434/get-pip.py

PYTHON_PIP_VERSION

20.2.2

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0b5


Layers

[#000] sha256:4612f6d0b889cad0ed0292fae3a0b0c8a9e49aff6dea8eb049b2386d9b07986f - 71.48% (1.6 GB)

[#001] sha256:3ab49687905cb6183025d5ec648fe62fb3d7039a9cf1fe09ef94a62d89d219db - 25.69% (589 MB)

[#002] sha256:43065500f09f35124a5d71517aa493fd23ad75660682600f7f6b40aa7629ac78 - 0.0% (1.1 KB)

[#003] sha256:8c15a8ae821d523c7f8d14b0a7db18a53aad3f55ff0616ad0773586f572b99ac - 0.0% (1.13 KB)

[#004] sha256:1d66bd0fee6ed29513e2ac70b4231abed64833448a1e6b59aadefa2a22107057 - 0.0% (1.12 KB)

[#005] sha256:0a045df2869229e57afe3516802d1a246471264eae5ec8118827225c4f4ff764 - 2.4% (55.1 MB)

[#006] sha256:fde2aca02214438b3431c07f1d3814d678bf8c56d7480e8ecabe4e3843e7c47b - 0.0% (1.11 KB)

[#007] sha256:d5ef637fa0a53e0db1a09c1fa3cdf32456cf80d075b0e587d4b2ba87d8110ea5 - 0.0% (1.14 KB)

[#008] sha256:2c636261ddec8b5ffe8a10dee975d9a98a864156040ec7846038de966c319f7d - 0.0% (1.1 KB)

[#009] sha256:556cbacf42bc8c836536b03f07bf7d3ef8d81afc7d7fcd5f43cdf2f0cc25dd58 - 0.43% (9.8 MB)

[#010] sha256:8f0a83bbbc223bd2fd879f61e9883ca393ebf2899172d01fbee29531cc9d2b45 - 0.0% (1.1 KB)


History
2020-05-07 05:09:25 UTC

Apply image 1809-RTM-amd64

2020-08-06 16:53:49 UTC

Install update 1809-amd64

2020-08-11 20:36:17 UTC

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

2020-08-11 20:36:18 UTC

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

2020-08-11 20:36:19 UTC

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

2020-08-11 20:38:13 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host 'Installing ...'; Start-Process python.exe -Wait -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=0', 'Include_test=0' ); $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; Write-Host 'Complete.'

2020-08-11 20:38:15 UTC

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

2020-08-11 20:38:17 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/5578af97f8b2b466f4cdbebe18a3ba2d48ad1434/get-pip.py

2020-08-11 20:38:18 UTC

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

2020-08-11 20:39:08 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading get-pip.py ({0}) ...' -f $env:PYTHON_GET_PIP_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:PYTHON_GET_PIP_URL -OutFile 'get-pip.py'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_GET_PIP_SHA256); if ((Get-FileHash 'get-pip.py' -Algorithm sha256).Hash -ne $env:PYTHON_GET_PIP_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host ('Installing pip=={0} ...' -f $env:PYTHON_PIP_VERSION); python get-pip.py --disable-pip-version-check --no-cache-dir ('pip=={0}' -f $env:PYTHON_PIP_VERSION) ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.'

2020-08-11 20:39:09 UTC

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