Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 17 |
# 必要的系统工具
|
| 18 |
ca-certificates curl bash git tini \
|
| 19 |
# Python核心环境(指定版本避免兼容性问题)
|
| 20 |
-
python3=${PYTHON_VERSION}* python3-pip \
|
| 21 |
# 清理缓存减少镜像大小
|
| 22 |
&& rm -rf /var/lib/apt/lists/*
|
| 23 |
|
|
|
|
| 17 |
# 必要的系统工具
|
| 18 |
ca-certificates curl bash git tini \
|
| 19 |
# Python核心环境(指定版本避免兼容性问题)
|
| 20 |
+
python3=${PYTHON_VERSION}* python3-pip python3-venv \
|
| 21 |
# 清理缓存减少镜像大小
|
| 22 |
&& rm -rf /var/lib/apt/lists/*
|
| 23 |
|