From a12a3de291dd4c1dc4e4e105602a7aa6833e09ed Mon Sep 17 00:00:00 2001 From: kite_U Date: Fri, 29 Aug 2025 00:05:57 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Python=20pip=20upgrade=20=EB=B9=84?= =?UTF-8?q?=ED=99=9C=EC=84=B1=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8e773f..8c36fb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,8 @@ FROM nvidia/cuda:12.6.0-runtime-ubuntu24.04 WORKDIR /app RUN apt-get update && \ - apt-get install -y python3 python3-pip git && \ + apt-get install -y python3 python3-venv python3-pip git && \ ln -s /usr/bin/python3 /usr/bin/python && \ - pip install --upgrade pip && \ apt-get clean && rm -rf /var/lib/apt/lists/* COPY . .