Switching to miniconda
This commit is contained in:
Родитель
f5e36582d0
Коммит
7fd52f2e72
|
@ -3,6 +3,7 @@ FROM nvidia/cuda
|
|||
# Install Anaconda
|
||||
# Non interactive installation instructions can be found
|
||||
# https://hub.docker.com/r/continuumio/anaconda/dockerfile
|
||||
# https://hub.docker.com/r/continuumio/miniconda/dockerfile
|
||||
ENV PATH /opt/conda/bin:$PATH
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
|
@ -10,9 +11,9 @@ RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-certificate
|
|||
libglib2.0-0 libxext6 libsm6 libxrender1 \
|
||||
git mercurial subversion
|
||||
|
||||
RUN wget --quiet https://repo.anaconda.com/archive/Anaconda2-5.3.0-Linux-x86_64.sh -O ~/anaconda.sh && \
|
||||
/bin/bash ~/anaconda.sh -b -p /opt/conda && \
|
||||
rm ~/anaconda.sh && \
|
||||
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda2-4.5.11-Linux-x86_64.sh -O ~/miniconda.sh && \
|
||||
/bin/bash ~/miniconda.sh -b -p /opt/conda && \
|
||||
rm ~/miniconda.sh && \
|
||||
ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
|
||||
echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \
|
||||
echo "conda activate base" >> ~/.bashrc
|
||||
|
|
Загрузка…
Ссылка в новой задаче