We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dae3f8c commit ccee655Copy full SHA for ccee655
1 file changed
Dockerfile
@@ -24,6 +24,7 @@ RUN apt-get update -qq && \
24
xvfb \
25
libfuse2 \
26
libfontconfig1 \
27
+ vim \
28
tzdata && \
29
rm -rf /var/lib/apt/lists/* && \
30
ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
@@ -32,10 +33,10 @@ RUN apt-get update -qq && \
32
33
# 升级 pip,使用默认 PyPI 源
34
RUN pip install -qq --upgrade pip
35
-# 定义 torch 版本参数
36
-ARG TORCH_VERSION
37
-# 安装 torch
38
-RUN pip install -qq --no-cache-dir torch==${TORCH_VERSION}
+# # 定义 torch 版本参数
+# ARG TORCH_VERSION
+# # 安装 torch
39
+# RUN pip install -qq --no-cache-dir torch==${TORCH_VERSION}
40
41
# 设置工作目录
42
WORKDIR /home
0 commit comments