介绍:
开箱即用的深度学习的镜像,基于ubuntu20.04版本构建。设置好了一个py37的conda环境,该环境预装好了pytorch。
● 时区设置为中国地区
● 预装了ananconda3(路径:opt/anaconda3)
● 预装了Pytorch(python3.7)(环境名为py37)
注意:第一次进入容器后需要执行一下conda init bash 命令并重启。
dockerfile
FROM nvidia/cuda:11.4.2-devel-ubuntu20.04
# 教程参考:https://segmentfault.com/a/1190000007652344
# https://github.com/okwrtdsh/anaconda3
MAINTAINER caicandong <caicnadog@shu.edu.cn>
ENV TZ=Asia/Shanghai\
DEBIAN_FRONTEND=noninteractive \
PATH=/opt/conda/bin:$PATH
# 设置时区:上海
# RUN echo "Asia/Shanghai" > /etc/timezone;dpkg-reconfigure -f noninteractive tzdata
# 设置工作路径
WORKDIR /root
RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
# 更新软件包
RUN apt-get update
# echo 'export PATH=/opt/conda/bin:$PATH' &