Dockerfile 273 B

1234567891011
  1. FROM python:3.11-slim
  2. # 安装构建工具
  3. RUN apt-get update && apt-get install -y \
  4. git build-essential cmake ninja-build wget curl && \
  5. rm -rf /var/lib/apt/lists/*
  6. # 安装 vllm
  7. RUN pip install --no-cache-dir vllm -i https://pypi.tuna.tsinghua.edu.cn/simple