Namespace
library
Image / Tag
python:3.8.3-windowsservercore-ltsc2016
Content Digest
sha256:eb09ac498cc956d547225a38895443712d1aaf44c766d34309ffc48bc9fb46c5
Details
Created

2020-06-09 23:49:31 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.8.3

PYTHON_VERSION

3.8.3


Layers

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

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

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

[#003] sha256:d2d3e04457ea7475dd69e5af2326512ed9da9a226de555104ff0043992ed9c9e - 0.0% (1.12 KB)

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

[#005] sha256:fc46623e1e8e76b396ff66676c140f175db08c8edac30b6e333abdca84767231 - 0.99% (55 MB)

[#006] sha256:4b1f495afd2b57bce97c1f839b6d526c976d0de51c03df93446e627a81638813 - 0.0% (1.09 KB)

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

[#008] sha256:5904c98f5e6baf8ff885bb91a9436d3c4b87bf0965e2879dd91e4f17c00ff9fe - 0.0% (1.07 KB)

[#009] sha256:9240c5fc07255136d4bb14472244efab19ffcdf000fd84eb1e492510356a51c0 - 0.18% (10 MB)

[#010] sha256:b99edb54d564024b171f8b73368eb1c857952d903988b6e9ef2cabfe28d65cb0 - 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:45:06 UTC

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

2020-06-09 23:45:07 UTC

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

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

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

2020-06-09 23:47:42 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:47:44 UTC

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

2020-06-09 23:49:30 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:49:31 UTC

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