This commit is contained in:
2026-09-20 05:14:05 -06:00
parent ebf541c1fe
commit a5cfdc1bb6
+6 -14
View File
@@ -7,24 +7,16 @@ WORKDIR /app
# 设置环境变量 # 设置环境变量
ENV PYTHONUNBUFFERED=1 ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONDONTWRITEBYTECODE=1
ENV PIP_NO_CACHE_DIR=1
ENV PIP_INDEX_URL=https://pypi.mirrors.ustc.edu.cn/simple/
# 配置中科大镜像源 # 复制依赖文件
# 配置 apt 镜像源
RUN sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list.d/debian.sources && \
sed -i 's/security.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list.d/debian.sources
# 安装系统依赖
RUN apt-get update && apt-get install -y \
gcc \
clang-format \
&& rm -rf /var/lib/apt/lists/*
# 复制项目文件
COPY requirements.txt ./ COPY requirements.txt ./
# 安装依赖(使用中科大 PyPI 镜像) # 安装依赖(使用中科大 PyPI 镜像)
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/ # clang-format 使用 PyPI 的二进制 wheel,避免 apt 拉取 LLVM 全家桶;
RUN pip install -r requirements.txt # 所有依赖都有预编译 wheel,不需要 gcc
RUN pip install -r requirements.txt clang-format
# 复制应用代码 # 复制应用代码
COPY . . COPY . .