This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ref https://github.com/tebeka/pythonwise/blob/master/docker-miniconda/Dockerfile | |
| FROM ubuntu:18.04 | |
| # System packages | |
| RUN apt-get update && apt-get install -y curl | |
| # Install miniconda to /miniconda | |
| RUN curl -LO http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh | |
| RUN bash Miniconda3-latest-Linux-x86_64.sh -p /miniconda -b | |
| RUN rm Miniconda3-latest-Linux-x86_64.sh |