Files

13 lines
294 B
Docker
Raw Permalink Normal View History

2026-04-08 06:16:35 +00:00
FROM git.modelhub.org.cn:9443/enginex-iluvatar-bi150/vllm:0.8.3
WORKDIR /workspace
COPY requirements.txt /workspace
RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
ADD . /workspace
2026-04-10 17:51:17 +08:00
EXPOSE 8000
2026-04-08 06:16:35 +00:00
CMD ["sh","-c","python3 transformers_server.py"]