Namespace
library
Image / Tag
python:2.7-windowsservercore-1809
Content Digest
sha256:8480abec04402fa785b0525f4dc36418a66387630abea08979ae6099e35f6f36
Details
Created

2020-04-21 00:23:44 UTC

Size

2.16 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.0.2

PYTHON_RELEASE

2.7.18

PYTHON_VERSION

2.7.18


Layers

[#000] sha256:65014b3c312172f10bd6701a063f9b5aaf9a916c2d2cb843d406a6f77ded3f8d - 66.13% (1.43 GB)

[#001] sha256:eac6fba788c9781d6f989eb0932cb33bf72c2cce4eb234cc6decdcab89e183bc - 31.71% (702 MB)

[#002] sha256:edc29de224149bd438350512f7a31a67edbd3fcafce757aa60620dc459c184ad - 0.0% (1.07 KB)

[#003] sha256:aa75be16f1858cd341c379ba7e54d9b24eeeeb6741b6cfc38f622b9403435632 - 0.0% (1.05 KB)

[#004] sha256:d9ba24c3e36acdedc41dc020359701b5ef51e0585ba8e4419eb399b203c6b5d5 - 0.0% (1.09 KB)

[#005] sha256:6332bab4ee60328c9fcc309d21340cd1c6c2d757f323b8aadcab0302818e4447 - 1.69% (37.3 MB)

[#006] sha256:36595d215ac4669d877eb8c79f9a29e20d1aec124cb3636a783126d93fe32356 - 0.0% (1.05 KB)

[#007] sha256:83bb6d81892be22e61a8392b2994440f93ce3a49c2f64b10d107565a36165797 - 0.0% (1.05 KB)

[#008] sha256:6da01429e7fbe7ed7ab9ba0105b09fd0f44f68dbc04216eff7da46dafa2e49f7 - 0.0% (1.06 KB)

[#009] sha256:a5e1ba8bba570c9590a601f59f6ab64c809f5dcce8d89d1473e15961d97698f1 - 0.22% (4.79 MB)

[#010] sha256:e5ca08f07b32309701f9c462fd3cbee5d02ab403a0d4b412fc3c0561eb34a8ed - 0.26% (5.72 MB)

[#011] sha256:ae1f16c2d88a1a36411583696aea92b174c4131f8b866c61bb9bb1f96ea19774 - 0.0% (1.1 KB)


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

Apply image 1809-RTM-amd64

2020-04-13 03:38:38 UTC

Install update 1809-amd64

2020-04-14 21:32:35 UTC

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

2020-04-21 00:21:09 UTC

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

2020-04-21 00:21:09 UTC

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

2020-04-21 00:22:21 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}.amd64.msi' -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.msi'; Write-Host 'Installing ...'; Start-Process msiexec -Wait -ArgumentList @( '/i', 'python.msi', '/quiet', '/qn', 'TARGETDIR=C:\Python', 'ALLUSERS=1', 'ADDLOCAL=DefaultFeature,Extensions,TclTk,Tools,PrependPath' ); $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.msi -Force; Write-Host 'Complete.'

2020-04-21 00:22:22 UTC

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

2020-04-21 00:22:24 UTC

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

2020-04-21 00:22:25 UTC

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

2020-04-21 00:23:06 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-04-21 00:23:43 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; pip install --no-cache-dir virtualenv

2020-04-21 00:23:44 UTC

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