我是Dockerfile的新手......我注意到在Dockerfile的某些实现中,人们在Dockerfile中执行bash脚本来安装依赖项(例如install_deepchem_conda.sh):
https://github.com/deepchem/deepchem/blob/master/Dockerfile
问题在于,当我尝试在pycharm中“运行”Docker调试配置时,环境将每次重新安装库。重新安装真的浪费了很多时间。
问题:
在创建miniconda环境时,Dockerfile的最佳做法是什么?
通过上面的示例,是否可以更好地展平bash脚本,然后运行一组“conda install -y -q -c xxx”?
谢谢!