fix: add conda symlink

This commit is contained in:
Félix Voituret
2019-11-21 14:41:11 +01:00
parent 7916ef4a3f
commit 4667e6f634
2 changed files with 3 additions and 2 deletions

View File

@@ -10,7 +10,8 @@ RUN apt-get update --fix-missing \
&& /opt/conda/bin/conda clean -tipsy \
&& 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
&& echo "conda activate base" >> ~/.bashrc \
&& ln -s /opt/conda/bin/conda /usr/bin/conda
RUN conda install -y cudatoolkit=9.0 \
&& conda install -y tensorflow-gpu==1.14.0 \