Namespace
library
Image / Tag
python:3.6.0a4-windowsservercore
Content Digest
sha256:bd382ded724172648ccf89d63e96b00c6f5542e9d58fabb2e7a7abc42c802cde
Details
Created

2016-10-12 19:46:31 UTC

Size

4.1 GB

Content Digest
Environment
PYTHON_PIP_VERSION

8.1.2

PYTHON_RELEASE

3.6.0

PYTHON_VERSION

3.6.0a4


Layers

[#000] sha256:9c7f9c7d9bc2915388ecc5d08e89a7583658285469d7325281f95d8ee279cc60 - 84.95% (3.48 GB)

[#001] sha256:de5064718b3f2749727c8b5ffddf2da7698189277afe0df6fc0a57ad573bca0f - 13.93% (585 MB)

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

[#003] sha256:99b7612cb91d8b173ea37cf3d749b760b3cb3f815289130842f34ce9282ff169 - 0.0% (1.19 KB)

[#004] sha256:75122bd86d0a05b3cf7f081fb28c00a22bc495a3cf7dabe03a76e3d0b064ec94 - 0.0% (1.18 KB)

[#005] sha256:03fcd7f03f2725dec087e233f990afc34b6e98c7d04f084ac85cbb933a4adea8 - 0.0% (1.19 KB)

[#006] sha256:c4e841740a44974830cf5a15e0cbe8b4088942c643bdcf9266f1b2be1c4a49e3 - 1.12% (46.8 MB)

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


History
2016-10-12 19:25:22 UTC

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

2016-10-12 19:43:02 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV PYTHON_VERSION=3.6.0a4

2016-10-12 19:43:06 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV PYTHON_RELEASE=3.6.0

2016-10-12 19:43:09 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV PYTHON_PIP_VERSION=8.1.2

2016-10-12 19:46:26 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $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); (New-Object System.Net.WebClient).DownloadFile($url, '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_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; $pipInstall = ('pip=={0}' -f $env:PYTHON_PIP_VERSION); Write-Host ('Installing {0} ...' -f $pipInstall); pip install --no-cache-dir --upgrade --force-reinstall $pipInstall; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.';

2016-10-12 19:46:31 UTC

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