Namespace
library
Image / Tag
python:3.8.0b2-windowsservercore-1809
Content Digest
sha256:4414c7837f75da1a974e35f3abe7eac1c24d3fa2b5adceb79523f0edbf000d3d
Details
Created

2019-07-30 01:43:41 UTC

Size

2.03 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:65014b3c312172f10bd6701a063f9b5aaf9a916c2d2cb843d406a6f77ded3f8d - 70.47% (1.43 GB)

[#001] sha256:02a4c14ecf32a07ddb51dcaae5b5a39c411423c76c18abc614470163e1d697da - 26.95% (560 MB)

[#002] sha256:1fe2cf7b4f2e1e9221b785b89be5ab29e182b88b2c4fda0f85ebd19be3ed56b7 - 0.0% (1.15 KB)

[#003] sha256:87ccf07dff2947ccce3d82dd60d4f2d2739eda407eb1737f55254a6b186171ad - 0.0% (1.15 KB)

[#004] sha256:57152e7f02fde0700ea7221602cfaa75627f9dc1604bdcf1a7cb47bef671070e - 0.0% (1.15 KB)

[#005] sha256:5078120ca7a80aed91c340869986bc37fd81b094753769d43322a43517180075 - 2.34% (48.6 MB)

[#006] sha256:c7b50d3d83098df953cbe14839375f5a19185a6aeea8a4d28643f3aff5cd249f - 0.0% (1.16 KB)

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

[#008] sha256:99a821ceec1376e009617e651c5605a12d84389898f04c69b1a79e88e4b15b4b - 0.0% (1.18 KB)

[#009] sha256:47fbf5de4b6cb377775545d24a20929347863a5f69c5b9ba12871abba75aa892 - 0.24% (5.05 MB)

[#010] sha256:2df6d2a23a6d1c7072f65e456edb28b375a266fdbc25f5d9ef3fcf74e0f8f9bf - 0.0% (1.15 KB)


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

Apply image 1809-RTM-amd64

2019-07-02 00:03:56 UTC

Install update 1809-amd64

2019-07-10 12:59:16 UTC

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

2019-07-10 15:44:13 UTC

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

2019-07-10 15:44:14 UTC

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

2019-07-30 01:42:29 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:42:30 UTC

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

2019-07-30 01:42:32 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:42:33 UTC

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

2019-07-30 01:43:39 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:43:41 UTC

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