HuggingFace0920 commited on
Commit
f6ec09c
·
verified ·
1 Parent(s): 48628b5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -11,9 +11,9 @@ ENV TZ=Asia/Shanghai \
11
  RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
12
  echo $TZ > /etc/timezone
13
 
14
- # 安装系统依赖
15
  RUN apt-get update && \
16
- apt-get install -y wget tar python3 python3-pip && \
17
  rm -rf /var/lib/apt/lists/*
18
 
19
  # 创建应用目录
 
11
  RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
12
  echo $TZ > /etc/timezone
13
 
14
+ # 安装系统依赖(包括python3-venv)
15
  RUN apt-get update && \
16
+ apt-get install -y wget tar python3 python3-pip python3-venv && \
17
  rm -rf /var/lib/apt/lists/*
18
 
19
  # 创建应用目录