when executing docker-compose up from my Macbook Pro, DockerFile would fail on step 26/35 for non satisfied libs for numpy=1.13.0 dep. (blas,mkl etc.)
so I made some modifications to make it work:
environment.yml
-
under channels section I added - https://conda.anaconda.org/conda-forge/ to be the last url.
-
under dependencies add - blas on top of others. and removed - matplotlib since for some reason it freeazed the process.
Dockerfile
-
change Anaconda2*.sh file to latest Anaconda2*.sh`
-
change:
RUN conda env create -f /root/sac/environment.yml \ && conda env update
to:
RUN conda env create -n sac
RUN conda env update
RUN conda export -f /root/sac/environment.yml
I believe this will save someone's time in future and strongly suggest to test and commit those changes @haarnoja
when executing
docker-compose upfrom my Macbook Pro, DockerFile would fail onstep 26/35for non satisfied libs fornumpy=1.13.0dep. (blas,mkl etc.)so I made some modifications to make it work:
environment.yml
under
channelssection I added- https://conda.anaconda.org/conda-forge/to be the last url.under
dependenciesadd- blason top of others. and removed- matplotlibsince for some reason it freeazed the process.Dockerfile
change
Anaconda2*.shfile to latest Anaconda2*.sh`change:
RUN conda env create -f /root/sac/environment.yml \ && conda env updateto:
RUN conda env create -n sacRUN conda env updateRUN conda export -f /root/sac/environment.ymlI believe this will save someone's time in future and strongly suggest to test and commit those changes @haarnoja