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.xtrt-llm Normal file
View File

@@ -0,0 +1,12 @@
ARG BASE_IMAGE=xtcl_ubuntu2004:v4.6
FROM $BASE_IMAGE
WORKDIR /workspace
ADD . .
ARG PYPI_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
RUN pip config set global.index-url $PYPI_MIRROR
RUN bash scripts/install_release.sh && \
rm -rf *.whl *.run downloads
ENV PATH=/usr/local/cuda-11.7/bin:/home/pt201/bin:$PATH