Namespace
library
Image / Tag
python:2.7.17-windowsservercore
Content Digest
sha256:b8af56b31617f471d412f04b30a9d893cca793c21096d0edc259ed06274b33b3
Details
Created

2020-04-15 17:22:58 UTC

Size

5.39 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.17

PYTHON_VERSION

2.7.17


Layers

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

[#001] sha256:d0099407ec8ccaf0472e55152e38b262bdf0b2cf8dfd2e8afcc89d728ba3f5a0 - 28.64% (1.54 GB)

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

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

[#004] sha256:2d12a71b42b2391c40400273e5a0b882b15d57722e48144ba9f1e1901868b4e7 - 0.0% (1.13 KB)

[#005] sha256:e86347244d4fda42ddaf05fa51b5e6e9f7949e9c214cbdae380b261e88d911bf - 0.69% (37.9 MB)

[#006] sha256:9a222e3ae920ee1441263dc22214a7ed43dda6187c413613b40002123dbd202c - 0.0% (1.13 KB)

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

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

[#009] sha256:8d09021e4819bf1644b283ba3e08f991b15c2d2d484b2284ee39f48304d97f1f - 0.17% (9.58 MB)

[#010] sha256:1e3779af6c74ac937d5c2b5babdd1e8e1e6762e0bf9d63c977072bd07fa0c7bd - 0.19% (10.5 MB)

[#011] sha256:fdd1b232b31fe012f65bc38d033741cfd8d9a05115ca834f1653104305bf5553 - 0.0% (1.12 KB)


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

Apply image 1607-RTM-amd64

2020-04-07 17:30:00 UTC

Install update ltsc2016-amd64

2020-04-14 21:35:40 UTC

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

2020-04-15 17:18:25 UTC

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

2020-04-15 17:18:26 UTC

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

2020-04-15 17:20:07 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-15 17:20:09 UTC

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

2020-04-15 17:20:10 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-15 17:20:12 UTC

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

2020-04-15 17:21:42 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-15 17:22:57 UTC

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

2020-04-15 17:22:58 UTC

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

Details
Created

2020-04-15 17:25: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.17

PYTHON_VERSION

2.7.17


Layers

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

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

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

[#003] sha256:aac3cc1dd696e5a172fead6781f3dd43a5cf9dae41d70256a510efba19ea7b75 - 0.0% (1.09 KB)

[#004] sha256:1dfdcfc6da0ff821d2058834dc7850a9780a02821bb5bb80f4dd68ea196ea492 - 0.0% (1.1 KB)

[#005] sha256:aa1f852d06044747b2f673592fd986e960fff6b49c006bd938afcea87cbd17ab - 1.68% (37.2 MB)

[#006] sha256:28afc6fdc54106aae808c9c281aa06f2b9279fbbe4ba1b5ea7fe4ad152fc4d95 - 0.0% (1.09 KB)

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

[#008] sha256:408e6e55c6680185eaecbaf77fe8c31d592a1cee958e88661d537f3b42de0882 - 0.0% (1.1 KB)

[#009] sha256:42671de5678388988b85c3c8c8d36976f9879109d0caab8c78a2cb34558c007e - 0.22% (4.77 MB)

[#010] sha256:1ad42e3c0d3117f1a13a013401ab2febd30df3727f83c37e489bee4ccd896eea - 0.26% (5.7 MB)

[#011] sha256:cdc9a250b315a24544f9cf103008a48929d7629ae1e4a91f3f8465d4293e12d3 - 0.0% (1.11 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-15 17:23:07 UTC

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

2020-04-15 17:23:08 UTC

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

2020-04-15 17:24: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-15 17:24:22 UTC

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

2020-04-15 17:24: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-15 17:24:25 UTC

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

2020-04-15 17:25: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-15 17:25:43 UTC

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

2020-04-15 17:25:44 UTC

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