From ebf9790f581bfcaf73a7c90e396f7c2a022b22ae Mon Sep 17 00:00:00 2001 From: infinitycat Date: Thu, 3 Apr 2025 13:03:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=9D=E8=AF=95=E7=94=A8uv=E5=8A=A0=E9=80=9F?= =?UTF-8?q?=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index eb2ddbbc7..ceacbb39d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,10 @@ COPY requirements.txt . COPY maim_message /maim_message # 安装依赖 -RUN pip install --upgrade pip +RUN uv pip install --system --upgrade pip #RUN pip install uv -RUN pip install -e /maim_message -RUN uv pip install -r requirements.txt +RUN uv pip install --system -e /maim_message +RUN uv pip install --system -r requirements.txt # 复制项目代码 COPY . .