FROM continuumio/anaconda3
ENV LANG=C.UTF-8
WORKDIR "/soundsynthesizer/workdir"
MAINTAINER NCEPU
EXPOSE 5666
COPY ./ ./
RUN conda update --all
RUN conda install -c conda-forge --yes --file requirements.txt
#RUN chmod +x /soundsynthesizer/workdir/entrypoint.sh
CMD ["./entrypoint.sh"]
docker 中 anaconda3 下载依赖时,requirements.txt 下载不了,卡住。
想时候的想法是更新源。其实在下载前,对 anaconda3进行更新,即可下载。
RUN conda update --all