Namespace
library
Image / Tag
python:3.8.2-windowsservercore-ltsc2016
Content Digest
sha256:1876d9e0af2222d8504c03a3a2978d8e4214212915e599cf0ad984b0305b492d
Details
Created

2020-05-13 15:07:16 UTC

Size

5.4 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

ce486cddac44e99496a702aa5c06c5028414ef48fdfd5242cd2fe559b13d4348

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1

PYTHON_RELEASE

3.8.2

PYTHON_VERSION

3.8.2


Layers

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

[#001] sha256:b940e70a4619b357d89f3dcabf4ac263d1efc65e1ef3af64cb0e8fbeaccc64dd - 28.66% (1.55 GB)

[#002] sha256:e3e9730c43354781e87aa51e853bff3b1e8c1ca7004f527139638a8f9d499c49 - 0.0% (1.12 KB)

[#003] sha256:705f7367062910f530778e9ee19dcc10d40cbc5cbebd7f3fde461d44fba50b4c - 0.0% (1.11 KB)

[#004] sha256:c556e62081eb46acc1ff222ad395cd34a96757ae241bae1000302d864065d03d - 0.0% (1.11 KB)

[#005] sha256:c807258e3d35f36e5a79adeb49adcf44333293a2e8a4a66cc260533157687a51 - 0.98% (54.4 MB)

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

[#007] sha256:2eada7477bdd04378a0346a295315e13cf41480db1603aae8d5332098287827b - 0.0% (1.13 KB)

[#008] sha256:153ff440e8b82b4c9259f2a88a84a41d816d004da15476589a1a0206573136e6 - 0.0% (1.1 KB)

[#009] sha256:7270c6d36f59c1f1600399bcae7d6ab3c6adacfda2df9546791b323c707445aa - 0.18% (10 MB)

[#010] sha256:180d2afa65f3a5a6c18059bc13eab2495a6c4174b20d42dbe9a1e180d5371eb1 - 0.0% (1.1 KB)


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

Apply image 1607-RTM-amd64

2020-05-04 15:24:00 UTC

Install update ltsc2016-amd64

2020-05-13 12:34:33 UTC

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

2020-05-13 15:03:05 UTC

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

2020-05-13 15:03:06 UTC

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

2020-05-13 15:05:30 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-05-13 15:05:31 UTC

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

2020-05-13 15:05:33 UTC

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

2020-05-13 15:05:34 UTC

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

2020-05-13 15:07:15 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-05-13 15:07:16 UTC

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