From f36fc81c57fe6a6fc15b9ceb1502f75f6186e3d8 Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 22 Sep 2025 12:13:03 +0800 Subject: [PATCH] . --- Dockerfile | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) diff --git a/Dockerfile b/Dockerfile index 71f7c7de3..50c8de870 100644 --- a/Dockerfile +++ b/Dockerfile @@ -211,59 +211,10 @@ RUN pip wheel "gradio==5.38.2" requests -w /wheels RUN pip wheel pybase64==1.3.2 -w /wheels - - # 导出轮子的独立阶段 FROM scratch AS wheelhouse COPY --from=builder-extras /wheels / - - - - -# 从宿主机目录 _wheelhouse/ 安装轮子的 runtime -ARG CUDA_VERSION=12.6.1 -FROM nvidia/cuda:${CUDA_VERSION}-runtime-ubuntu22.04 AS runtime-prebuilt - -ENV DEBIAN_FRONTEND=noninteractive PYTHONUNBUFFERED=1 LANG=C.UTF-8 LC_ALL=C.UTF-8 - -RUN apt-get update && apt-get install -y --no-install-recommends \ - gcc g++ build-essential ninja-build cuda-compiler-12-6 \ - libcupti-dev cuda-cupti-12-6 \ - python3 python3-dev python3-pip python3-distutils curl ca-certificates \ - libopenblas-dev libgomp1 libnuma1 libopenmpi-dev openmpi-bin libnuma-dev libpng16-16 libjpeg8 \ - libnccl2=2.22.3-1+cuda12.6 && \ - rm -rf /var/lib/apt/lists/* && \ - python3 -m pip install --no-cache-dir --upgrade pip - -RUN ldconfig -p | grep -i cupti || (echo "no cupti"; exit 1) -RUN ldconfig - -# ★ 从宿主机构建上下文复制本地轮子(目录名固定:_wheelhouse/) -COPY _wheelhouse/ /tmp/wheels/ - -# 安装顺序与 runtime-autobuild 完全一致(优先 torch,再装其它) -RUN ls -lh /tmp/wheels || true && \ - rm -f /tmp/wheels/huggingface_hub-0.34.4*.whl || true && \ - python3 -m pip install --no-cache-dir --no-deps /tmp/wheels/torch*.whl && \ - python3 -m pip install --no-cache-dir --no-deps /tmp/wheels/vllm-*.whl || true && \ - python3 -m pip install --no-cache-dir --no-deps /tmp/wheels/sgl_kernel-*.whl || true && \ - python3 -m pip install --no-cache-dir --no-deps /tmp/wheels/gradio-5.38.2*.whl || true && \ - python3 -m pip install --no-cache-dir --no-deps $(find /tmp/wheels -maxdepth 1 -type f -name '*.whl' ! -name 'gradio-*' -printf "/tmp/wheels/%f ") && \ - python3 -c "import gradio, sys; print('✅ Gradio version =', gradio.__version__)" && \ - rm -rf /tmp/wheels - - -RUN python3 -m pip install --no-deps xgrammar==0.1.24 - -RUN echo "/usr/local/cuda/extras/CUPTI/lib64" > /etc/ld.so.conf.d/cupti.conf && ldconfig -# 保险起见,再加一行环境变量(有些基础镜像不把 extras 加入 ld.so.conf): -ENV LD_LIBRARY_PATH=/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64:${LD_LIBRARY_PATH} - - - - - ############################################################################### # Stage 2 ─ runtime:极简运行镜像,仅离线安装 wheel ###############################################################################