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

2020-03-11 00:49:15 UTC

Size

2.16 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.0.2

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0a4


Layers

[#000] sha256:65014b3c312172f10bd6701a063f9b5aaf9a916c2d2cb843d406a6f77ded3f8d - 66.07% (1.43 GB)

[#001] sha256:23645bd7ee0885911e1e2ab55ebcb36ce35795e1ceba9166ffd1b26dde18c3ee - 31.46% (697 MB)

[#002] sha256:a7fab05ac5ad4b2f665ad71b5c08a81e82bff7ea2fdcbb66c14193d2dd268875 - 0.0% (1.18 KB)

[#003] sha256:1d94639286403aabd13271f2eea0925f7e7ab382ad0766cafb4ab7b80378d9a5 - 0.0% (1.19 KB)

[#004] sha256:349255791ecb4c1fe988b71e32cf9324d35e2a1dc21cd9e4ffbe06dacc2b01b3 - 0.0% (1.19 KB)

[#005] sha256:3ea3b8eb1663b8ab1a267cdc4b5f6e0e7afddbd2d20b06fea738a34ffead6902 - 2.24% (49.6 MB)

[#006] sha256:ec4e77c65b54d1b9327fc2178780713868ee63a41a8d5092be0d0e188f0d1ae0 - 0.0% (1.18 KB)

[#007] sha256:a5d376da3b59134defbabd85facf688dbd4f3efab4c63722ca55a04a288051c1 - 0.0% (1.18 KB)

[#008] sha256:8a37bfeb2b65d1c2f9da1dc218946de553615ce922fa56335dae3a582010263f - 0.0% (1.18 KB)

[#009] sha256:15006e44dfd1c14e26e6e1f3a2bf9c307b39b44d51539335872fce2a013e9bc3 - 0.23% (5.12 MB)

[#010] sha256:0841f338f784f6358e5971a6ad5254b94ca9d518dbcd73eb6b2b35205f6ea3c3 - 0.0% (1.18 KB)


History
2018-09-15 09:10:26 UTC

Apply image 1809-RTM-amd64

2020-03-06 11:12:29 UTC

Install update 1809-amd64

2020-03-11 00:42:10 UTC

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

2020-03-11 00:42:12 UTC

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

2020-03-11 00:42:14 UTC

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

2020-03-11 00:47:47 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-03-11 00:47:48 UTC

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

2020-03-11 00:47:50 UTC

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

2020-03-11 00:47:51 UTC

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

2020-03-11 00:49:14 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-03-11 00:49:15 UTC

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