2026-07-14 19:01:18 +08:00
|
|
|
FROM harbor.4pd.io/modelhubxc/enginex-metax/vllm:0.9.1
|
2026-04-14 19:01:27 +08:00
|
|
|
|
|
|
|
|
WORKDIR /workspace
|
|
|
|
|
|
|
|
|
|
# 复制 requirements.txt 并安装 Python 依赖
|
|
|
|
|
COPY requirements.txt .
|
2026-07-15 11:09:57 +08:00
|
|
|
RUN /opt/conda/bin/pip install --no-deps --no-cache-dir -r requirements.txt
|
2026-04-14 19:01:27 +08:00
|
|
|
|
|
|
|
|
# 复制 server.py 到 workspace
|
|
|
|
|
COPY server.py /workspace/
|
|
|
|
|
|