From c516901d04d0e40914a30a78039cb91693bf985e Mon Sep 17 00:00:00 2001 From: Linghao Zhang Date: Sun, 24 Nov 2024 15:00:49 +0800 Subject: [PATCH] fix: apt python --- core/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Dockerfile b/core/Dockerfile index a9cbee73..065bd671 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -7,7 +7,7 @@ RUN \ apt-get install -y git && \ # Install python apt-get update && \ - apt-get install -y python python-dev python-pip python-virtualenv && \ + apt-get install -y python3 python3-dev python3-pip python3-venv && \ rm -rf /var/lib/apt/lists/* && \ # Install misc apt-get update && \