From 95f2347067e93989b841f60b1f159f8501f0e76f Mon Sep 17 00:00:00 2001 From: mol Date: Fri, 23 Feb 2024 23:48:29 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 356b301..d66005f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN echo "安装基础工具与配置文件" && \ # 安装 vim apt-get install -y vim && \ # 安装 git - apt-get install -y git && \ + # apt-get install -y git && \ # 安装 ssh 服务 apt-get install -y openssh-server && \ # 创建日志文件 @@ -61,7 +61,8 @@ RUN echo "安装 python 环境" && \ apt update && \ apt install -y software-properties-common && \ add-apt-repository -y ppa:deadsnakes/ppa && \ - apt install -y python3.8 python3.8-dev python3.8-venv python3-pip python3-wheel + apt install -y python3.8 + # python3.8-dev python3.8-venv python3-pip python3-wheel # 安装 docker 环境 RUN echo "安装 docker 环境" && \