Namespace
library
Image / Tag
python:3.7.5-windowsservercore-1809
Content Digest
sha256:72a01cd487795f706231761e0222a1617a793d4be6229c48ddb909fa7d5c708f
Details
Created

2019-12-11 01:03:40 UTC

Size

2.12 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

b86f36cc4345ae87bfd4f10ef6b2dbfa7a872fbff70608a1e43944d283fd0eee

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

19.3.1

PYTHON_RELEASE

3.7.5

PYTHON_VERSION

3.7.5


Layers

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

[#001] sha256:faf31ee0aa3d3c60a38dd03c7554d632065cef50eab052ef1444590786249d07 - 29.99% (650 MB)

[#002] sha256:e147f14e0d6a9cbd5261162dea8f3aac7a34db5d9f6a587a9aac6b88722a2da4 - 0.0% (1.18 KB)

[#003] sha256:0864dec0d4ca7217bcd3d55a81d152b7adc479bf971c49ea306841268856ca07 - 0.0% (1.16 KB)

[#004] sha256:561e0adbd9e5a6dec86667397ce79b315b0a38abdd2dd633cfe5ca6f356082be - 0.0% (1.17 KB)

[#005] sha256:8405d110a8126b743ee083033e9871ebcbd65e7edd501ea2516a0b4926b1a917 - 2.24% (48.5 MB)

[#006] sha256:d353585f99508e17a2cd2f6f1c74deb9cf01f6cd07cf87aea4bf247d2eac8372 - 0.0% (1.18 KB)

[#007] sha256:da330827e682b4b6257853031eb0aad294321013a925469ba7b8e500a359e1d6 - 0.0% (1.18 KB)

[#008] sha256:1e361acf1d80720b77c1629b758d43321d7bcf4b73a78840e7bba675b9d92cd0 - 0.0% (1.16 KB)

[#009] sha256:e0f08d489f286b5dca33b8622445f98d6c553168cc6d8c1bf1fff08ff12b80ef - 0.23% (5.03 MB)

[#010] sha256:8c3d6be9e97e1501f779ff0fe7a30237e92ff8cbaa912b9e0a8d11d2db324ec5 - 0.0% (1.16 KB)


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

Apply image 1809-RTM-amd64

2019-11-29 04:34:15 UTC

Install update 1809-amd64

2019-12-10 21:34:07 UTC

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

2019-12-11 01:00:07 UTC

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

2019-12-11 01:00:09 UTC

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

2019-12-11 01:02:29 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.'

2019-12-11 01:02:31 UTC

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

2019-12-11 01:02:32 UTC

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

2019-12-11 01:02:34 UTC

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

2019-12-11 01:03:39 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.'

2019-12-11 01:03:40 UTC

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