This commit is contained in:
2025-08-06 10:30:31 +08:00
commit dfb6b3ae16
8 changed files with 353 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
ARG BASE_IMAGE=harbor.4pd.io/mic-llm-x/kunlunxin-xtrt-llm:0.5.3.2
FROM $BASE_IMAGE
ARG PYPI_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
RUN pip config set global.index-url $PYPI_MIRROR
ADD requirements.txt .
RUN pip install -r requirements.txt
ADD llm_utils.py main.py ./
ENTRYPOINT ["python3", "main.py"]