cube-studio/images
2024-11-10 18:50:51 +08:00
..
jupyter-notebook 升级20240901版本 2024-11-10 18:50:51 +08:00
mul-cuda/ubuntu 升级20240901版本 2024-11-10 18:50:51 +08:00
nni 升级20240901版本 2024-11-10 18:50:51 +08:00
serving 升级20240901版本 2024-11-10 18:50:51 +08:00
theia 边缘模式下jupyter打不开的问题 2022-06-08 19:40:34 +08:00
ubuntu-gpu 升级20240901版本 2024-11-10 18:50:51 +08:00
README.md 升级20240901版本 2024-09-24 08:25:10 +08:00
sources.list-ubuntu20.04.amd64 升级20240901版本 2024-11-10 18:50:51 +08:00
sources.list-ubuntu20.04.arm64 升级20240901版本 2024-11-10 18:50:51 +08:00
sources.list-ubuntu22.04.amd64 升级20240901版本 2024-11-10 18:50:51 +08:00
sources.list-ubuntu22.04.arm64 升级20240901版本 2024-11-10 18:50:51 +08:00

在线构建镜像

修改默认python版本

rm /usr/bin/python
ln -s /usr/bin/python3.6 /usr/bin/python
rm /usr/bin/pip
ln -s /usr/bin/pip3 /usr/bin/pip
pip install pip --upgrade

ubuntu 容器基础工具的封装

RUN apt update

# 安装运维工具
RUN apt install -y --force-yes --no-install-recommends vim apt-transport-https gnupg2 ca-certificates-java rsync jq  wget git dnsutils iputils-ping net-tools curl mysql-client locales zip

# 安装python
RUN apt install -y python3.6-dev python3-pip libsasl2-dev libpq-dev \
	&& ln -s /usr/bin/python3 /usr/bin/python \
	&& ln -s /usr/bin/pip3 /usr/bin/pip


# 安装中文
RUN apt install -y --force-yes --no-install-recommends locales ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy && locale-gen zh_CN && locale-gen zh_CN.utf8
ENV LANG zh_CN.UTF-8
ENV LC_ALL zh_CN.UTF-8
ENV LANGUAGE zh_CN.UTF-8

# 便捷操作
RUN echo "alias ll='ls -alF'" >> ~/.bashrc && \
	echo "alias la='ls -A'" >> ~/.bashrc && \
	echo "alias vi='vim'" >> ~/.bashrc

# 安装其他工具
### 安装kubectl
RUN curl -LO https://dl.k8s.io/release/v1.16.0/bin/linux/amd64/kubectl && chmod +x kubectl && mv kubectl /usr/local/bin/
### 安装mysql客户端
RUN apt install -y mysql-client-5.7
### 安装java
RUN apt install -y openjdk-8-jdk
### 安装最新版的nodejs
RUN curl -sL https://deb.nodesource.com/setup_13.x | bash -
RUN apt-get install -y nodejs && npm config set unicode false

常用GPU基础镜像

构建脚本

ubuntu

cuda12.1.0-cudnn8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda12.1.0-cudnn8-amd64

python3.11

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda12.1.0-cudnn8-python3.11-amd64

python3.10

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda12.1.0-cudnn8-python3.10-amd64

python3.9

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda12.1.0-cudnn8-python3.9-amd64

cuda11.8.0-cudnn8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.8.0-cudnn8-amd64

python3.11

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.8.0-cudnn8-python3.11-amd64

python3.10

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.8.0-cudnn8-python3.10-amd64

python3.9

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.8.0-cudnn8-python3.9

python3.8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.8.0-cudnn8-python3.8

python3.7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.8.0-cudnn8-python3.7

cuda11.0.3-cudnn8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8

python3.8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.8

python3.7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda11.0.3-cudnn8-python3.7

cuda10.2-cudnn7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7

python3.8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.8

python3.7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.2-cudnn7-python3.7

cuda10.1-cudnn7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7

python3.8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.8

python3.7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.7

python3.6

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.1-cudnn7-python3.6

cuda10.0-cudnn7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7

python3.8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.8

python3.7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.7

python3.6

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda10.0-cudnn7-python3.6

cuda9.1-cudnn7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7

python3.8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.8

python3.7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.7

python3.6

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.1-cudnn7-python3.6

cuda9.0-cudnn7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.0-cudnn7

python3.8

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.0-cudnn7-python3.8

python3.7

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.0-cudnn7-python3.7

python3.6

  • ccr.ccs.tencentyun.com/cube-studio/ubuntu-gpu:cuda9.0-cudnn7-python3.6

cuda10.1-cuda10.0-cuda9.0-cudnn7.6

  • ccr.ccs.tencentyun.com/cube-studio/gpu:ubuntu18.04-python3.6-cuda10.1-cuda10.0-cuda9.0-cudnn7.6-base