Files
enginex-metax_c_series-sent…/Dockerfile
Sun Ruoxi efa8f34e77
Some checks failed
Docker Build and Push / docker (push) Failing after 53s
fix run command
Signed-off-by: Sun Ruoxi <sunruoxi@4paradigm.com>
2026-07-15 10:23:03 +08:00

19 lines
419 B
Docker

FROM harbor.4pd.io/modelhubxc/enginex-metax/vllm:0.9.1
WORKDIR /workspace
# 复制 requirements.txt 并安装 Python 依赖
COPY requirements.txt .
RUN apt update
RUN apt install python3-pip
RUN pip3 install --no-cache-dir -r requirements.txt
# 复制 server.py 到 workspace
COPY server.py /workspace/
# 暴露端口
EXPOSE 8000
# 启动服务
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"]