Namespace
library
Image / Tag
python:3.8-rc-windowsservercore-1809
Content Digest
sha256:e2d82775cf3b8589e113542968edff686337d54af1f2190859a1489dd6b7e121
Details
Created

2019-10-09 17:37:22 UTC

Size

2.1 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

57e3643ff19f018f8a00dfaa6b7e4620e3c1a7a2171fd218425366ec006b3bfe

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

19.2.3

PYTHON_RELEASE

3.8.0

PYTHON_VERSION

3.8.0rc1


Layers

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

[#001] sha256:12c8dbabfd62cb512baca43f0d1e9588127e6bd66641e93a5e6f7e89e1bf7656 - 29.52% (636 MB)

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

[#003] sha256:83e9d7aaebdcbeb8566e6a0aba3acd66cd18073f3e284ae90d6072e59b73d6a3 - 0.0% (1.16 KB)

[#004] sha256:2df65b2845677d9f0f92c5d0d18531d0c791d22b72305c2b801497a985a2c360 - 0.0% (1.16 KB)

[#005] sha256:2222aae3e7a3778433c385e8a0e2296b557e9980ce958a164df8bf397fe025dd - 2.29% (49.3 MB)

[#006] sha256:082ebcb056ee56789471d9f6bd7f6b1e0ca88981f795cbef8f9c9a1406c3750e - 0.0% (1.15 KB)

[#007] sha256:eeafdc1989f4be3e08618fefe9de11c0f9de04365e02e1b00c328da86736179a - 0.0% (1.15 KB)

[#008] sha256:835d945fdfa62584f628e596ba0c347eedb7c6746624382761809485bf0319c5 - 0.0% (1.18 KB)

[#009] sha256:dd6ff7a0bb36ba4c2c01d55aec114123193a9a56136c22d980b28dadb9ebcef3 - 0.23% (5.02 MB)

[#010] sha256:c6b564eb1347bc2b7d843ef144ab23d90e77b88d0f28858d2bc9fb01415075a8 - 0.0% (1.16 KB)


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

Apply image 1809-RTM-amd64

2019-10-06 10:02:47 UTC

Install update 1809-amd64

2019-10-09 13:07:48 UTC

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

2019-10-09 17:33:38 UTC

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

2019-10-09 17:33:40 UTC

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

2019-10-09 17:36:09 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.'

2019-10-09 17:36:11 UTC

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

2019-10-09 17:36:12 UTC

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

2019-10-09 17:36:14 UTC

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

2019-10-09 17:37:21 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.'

2019-10-09 17:37:22 UTC

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