Anaconda 3 on Windows Server Core
9.8K
FROM microsoft/windowsservercore:1709
WORKDIR /tmp
RUN powershell (New-Object System.Net.WebClient).DownloadFile('https://repo.continuum.io/archive/Anaconda3-5.1.0-Windows-x86_64.exe', 'Anaconda3.exe')
RUN powershell Unblock-File Anaconda3.exe
RUN Anaconda3.exe /InstallationType=JustMe /RegisterPython=1 /S /D=%UserProfile%\Anaconda3
RUN del Anaconda3.exe
WORKDIR /
RUN setx /M PATH "%PATH%;%UserProfile%\Anaconda3;%UserProfile%\Anaconda3\Scripts;%UserProfile%\Anaconda3\Library\bin"
CMD ["ipython"]
Content type
Image
Digest
Size
7.3 GB
Last updated
over 8 years ago
docker pull yorek/anaconda3-windowservercore