Namespace
library
Image / Tag
python:3.8.0b2-windowsservercore-1803
Content Digest
sha256:bad22497a12ff4201a5164f219a26db5985a6da80c67faa4d0bfc91e65ffdf22
Details
Created

2019-07-30 01:40:00 UTC

Size

2.22 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

56bb63d3cf54e7444351256f72a60f575f6d8c7f1faacffae33167afc8e7609d

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

19.2.1

PYTHON_RELEASE

3.8.0

PYTHON_VERSION

3.8.0b2


Layers

[#000] sha256:d9e8b01179bfc94a5bdb1810fbd76b999aa52016001ace2d3a4c4bc7065a9601 - 69.52% (1.55 GB)

[#001] sha256:2c94705eec1366ad664f9523fe8b5dc4ceed4b4dd7f784e64a526c588201bdc4 - 28.11% (640 MB)

[#002] sha256:c89fac54a19fafc4cdf9a405eedf45cff775b555901adb88d32498f3b6aa9d1a - 0.0% (1.17 KB)

[#003] sha256:2e0ef31b47906ffb9836c52872c9a309d45395de29842803fd065edea66884bd - 0.0% (1.18 KB)

[#004] sha256:fc346445f81f290009830aacb359e5bdbe009e51c8f96a7aad868c60ba5276f1 - 0.0% (1.18 KB)

[#005] sha256:7f1ea78266dc4e1ba973f3a496449a404e1e526ea8ac6a7eb77efbdde49f3bc3 - 2.15% (49 MB)

[#006] sha256:c223d8af47560629671d66be0330828d5844e0b452d8bcddcbe5ca1b79538498 - 0.0% (1.14 KB)

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

[#008] sha256:2f0d84fadd1322a68e3b537faf3bf1532e52089f23e2ec16d459709416f2357d - 0.0% (1.14 KB)

[#009] sha256:19b4abd1fe18f76c485f4050f7a6f21238f03fa405229b8b7bbf53de7e5fb1e6 - 0.22% (5.06 MB)

[#010] sha256:b0c9ff02d1bff9fbcd7c4c2df085e8070c35e9f86d2d422361e93ce155328896 - 0.0% (1.14 KB)


History
2018-04-12 09:20:54 UTC

Apply image 1803-RTM-amd64

2019-07-05 15:30:33 UTC

Install update 1803-amd64

2019-07-10 12:51:44 UTC

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

2019-07-10 15:40:28 UTC

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

2019-07-10 15:40:29 UTC

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

2019-07-30 01:38:46 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-07-30 01:38:48 UTC

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

2019-07-30 01:38:50 UTC

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

2019-07-30 01:38:51 UTC

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

2019-07-30 01:39:58 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-07-30 01:40:00 UTC

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