From e69edc0e7990bec6002e9695944530b9e32b4c7e Mon Sep 17 00:00:00 2001 From: mol Date: Sat, 24 Feb 2024 01:22:33 +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 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 68cfb41..4c39ca0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,18 +58,18 @@ RUN echo "安装 node 环境" && \ RUN echo "安装 python 环境" && \ export http_proxy=${PROXY} && \ export https_proxy=${PROXY} && \ - apt update && \ - apt install -y software-properties-common && \ - add-apt-repository -y ppa:deadsnakes/ppa && \ - apt install -y python3 + apt-get update && \ + # apt install -y software-properties-common && \ + # add-apt-repository -y ppa:deadsnakes/ppa && \ + apt-get install -y python3 # python3.8-dev python3.8-venv python3-pip python3-wheel # 安装 docker 环境 RUN echo "安装 docker 环境" && \ export http_proxy=${PROXY} && \ export https_proxy=${PROXY} && \ - apt update && \ - apt install -y docker.io + apt-get update && \ + apt-get install -y docker.io # 配置 ssh RUN echo "配置 ssh" && \