This commit is contained in:
PsLink
2025-11-01 11:47:26 +08:00
parent 45469a1a14
commit c7037a5778
4 changed files with 1324 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM git.modelhub.org.cn:9443/enginex-ascend/vllm-ascend:v0.11.0rc0
WORKDIR /app
RUN pip install transformers==4.46.3 einops addict easydict modelscope uvicorn fastapi
COPY app.py .
ENTRYPOINT []
CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]