Files
engnex-r_series-llm/Dockerfile.xtrt-llm

13 lines
319 B
Docker
Raw Normal View History

2025-08-06 10:30:31 +08:00
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