From 40084d14997c9441fde912b935d9cf8234fbad4c Mon Sep 17 00:00:00 2001 From: Therainclouds <245141853@qq.com> Date: Fri, 26 Dec 2025 16:44:41 +0800 Subject: [PATCH] remove req dependency --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51073cb..2bcbb62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,6 @@ RUN mamba install -y -c conda-forge \ && mamba clean -a -y COPY pyproject.toml ./ -COPY fastapi_server/requirements.txt ./fastapi_server/ COPY lang_agent/ ./lang_agent/ COPY fastapi_server/ ./fastapi_server/ @@ -28,10 +27,6 @@ COPY fastapi_server/ ./fastapi_server/ # Install Python dependencies inside micromamba env RUN python -m pip install --upgrade pip \ - -i https://mirrors.aliyun.com/pypi/simple/ \ - --trusted-host mirrors.aliyun.com \ - --default-timeout=300 && \ - python -m pip install --no-cache-dir -r fastapi_server/requirements.txt \ -i https://mirrors.aliyun.com/pypi/simple/ \ --trusted-host mirrors.aliyun.com \ --default-timeout=300 && \