We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 503d326 commit 14ebe9bCopy full SHA for 14ebe9b
Dockerfile-web
@@ -75,6 +75,12 @@ RUN pip cache purge
75
# 拷贝 C++ 运行时库
76
RUN cp /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /opt/conda/lib/
77
78
+# 安装部分个人使用的工具
79
+RUN apt install -y net-tools tree vim curl git git-lfs neofetch
80
+# apt修改为国内源
81
+RUN rm -rf /etc/apt/sources.list && wget https://github.com/IAMJOYBO/ktransformers/raw/refs/heads/main/sources-20.04.list -O /etc/apt/sources.list
82
+RUN pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
83
+
84
# 预下载的配置文件
85
RUN pip install huggingface_hub modelscope
86
RUN huggingface-cli download deepseek-ai/DeepSeek-R1 --exclude *.safetensors --local-dir /app/model/DeepSeek-R1
0 commit comments