From 4380165919c8de50e79ffae08d333eef6938e6b4 Mon Sep 17 00:00:00 2001 From: Wenjie Zhang Date: Mon, 4 Aug 2025 20:46:17 +0800 Subject: [PATCH] =?UTF-8?q?refactor(docker):=20=E7=A7=BB=E9=99=A4Dockerfil?= =?UTF-8?q?e=E4=B8=AD=E7=9A=84=E4=BB=A3=E7=90=86=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 代理设置已不再需要,简化构建环境配置 --- docker/api.Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docker/api.Dockerfile b/docker/api.Dockerfile index ea5779c7..c51ef98e 100644 --- a/docker/api.Dockerfile +++ b/docker/api.Dockerfile @@ -28,12 +28,6 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone & COPY ../pyproject.toml /app/pyproject.toml COPY ../.python-version /app/.python-version -# 安装依赖项 -ENV HTTP_PROXY=http://172.19.13.5:7890 \ - HTTPS_PROXY=http://172.19.13.5:7890 \ - http_proxy=http://172.19.13.5:7890 \ - https_proxy=http://172.19.13.5:7890 - RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --no-install-project