Namespace
library
Image / Tag
python:3.9.0b2-windowsservercore-ltsc2016
Content Digest
sha256:63c3b3c3a1a2c5971d33d40d4aeaa396b25dce36b1d50c46564f997831711ca7
Details
Created

2020-06-09 23:41:59 UTC

Size

5.4 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

b3153ec0cf7b7bbf9556932aa37e4981c35dc2a2c501d70d91d2795aa532be79

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1.1

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0b2


Layers

[#000] sha256:3889bb8d808bbae6fa5a33e07093e65c31371bcf9e4c38c21be6b9af52ad1548 - 70.14% (3.79 GB)

[#001] sha256:375fbabb84945635805b46a02a17ac15a3177bcaae7404cfab5f1ceb0460cb60 - 28.68% (1.55 GB)

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

[#003] sha256:6146b74346cad9f548d5bf48b3c0d519a21e05e1a305329c7ace112fa3b965fd - 0.0% (1.13 KB)

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

[#005] sha256:70d378feb69efd236104840c0c0dedcda7d28dbe6b0283414fa80d6b7034e2b7 - 1.0% (55.6 MB)

[#006] sha256:bca9b7b11e5e587514346991b94a6063f7acc63c9314abd96e927c3ff86ca822 - 0.0% (1.1 KB)

[#007] sha256:4f78ffbb54c5a4526d2bebc90abedc253d539a71109b577b002e83a164a515c7 - 0.0% (1.1 KB)

[#008] sha256:1b03d9beb6f52cea1d32d5c94df61c34123c3b7347acf8bc0e569baa6aa1161c - 0.0% (1.13 KB)

[#009] sha256:86306b1d458734172820be603a90236fe9a4acc2778ac4ebb37a45ed4d1e7670 - 0.18% (10.1 MB)

[#010] sha256:5bfd7b771aa9472ad28e8a7f6b9e36c8cce300c9ec835f3f62a3d2faab48c7e7 - 0.0% (1.1 KB)


History
2016-11-19 17:05:00 UTC

Apply image 1607-RTM-amd64

2020-06-01 18:53:00 UTC

Install update ltsc2016-amd64

2020-06-09 22:36:45 UTC

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

2020-06-09 23:37:28 UTC

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

2020-06-09 23:37:29 UTC

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

2020-06-09 23:40:06 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-06-09 23:40:07 UTC

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

2020-06-09 23:40:09 UTC

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

2020-06-09 23:40:10 UTC

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

2020-06-09 23:41:59 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-06-09 23:41:59 UTC

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