Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/cuda_version_12.8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ WORKDIR /root

COPY ./requirements.txt /lightllm/requirements.txt
RUN pip install -U pip
RUN pip install -r /lightllm/requirements.txt --no-cache-dir
RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu128

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The PyTorch wheel index URL https://download.pytorch.org/whl/cu128 appears to be incorrect. The cu128 index for PyTorch wheels does not exist, which will cause the Docker build to fail. For CUDA 12.x compatible PyTorch versions, the correct index is cu121. Please update the URL to use the correct index.

RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu121


RUN pip install --no-cache-dir vllm --pre --extra-index-url https://wheels.vllm.ai/nightly

Expand Down
2 changes: 1 addition & 1 deletion docker/cuda_version_12.8.0/Dockerfile.deepep
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ WORKDIR /root

COPY ./requirements.txt /lightllm/requirements.txt
RUN pip install -U pip
RUN pip install -r /lightllm/requirements.txt --no-cache-dir
RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu128

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The PyTorch wheel index URL https://download.pytorch.org/whl/cu128 appears to be incorrect. The cu128 index for PyTorch wheels does not exist, which will cause the Docker build to fail. For CUDA 12.x compatible PyTorch versions, the correct index is cu121. Please update the URL to use the correct index.

RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu121


RUN pip install --no-cache-dir vllm --pre --extra-index-url https://wheels.vllm.ai/nightly

Expand Down
2 changes: 1 addition & 1 deletion docker/cuda_version_12.8.0/Dockerfile.nixl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN case ${TARGETPLATFORM} in \
WORKDIR /root

COPY ./requirements.txt /lightllm/requirements.txt
RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu124
RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu128

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The PyTorch wheel index URL has been updated from cu124 to cu128, but both https://download.pytorch.org/whl/cu124 and https://download.pytorch.org/whl/cu128 appear to be incorrect. Neither of these indices for PyTorch wheels exist, which will cause the Docker build to fail. For CUDA 12.x compatible PyTorch versions, the correct index is cu121. Please update the URL to use the correct index.

RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu121


RUN --mount=type=cache,target=/root/.cache/pip pip install vllm --pre --extra-index-url https://wheels.vllm.ai/nightly
RUN --mount=type=cache,target=/root/.cache/pip git clone https://github.com/ModelTC/LightKernel.git && cd LightKernel && pip install --no-deps -v .
Expand Down
2 changes: 1 addition & 1 deletion docker/cuda_version_12.8.0/Dockerfile.nixl.deepep
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN case ${TARGETPLATFORM} in \
WORKDIR /root

COPY ./requirements.txt /lightllm/requirements.txt
RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu124
RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu128

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The PyTorch wheel index URL has been updated from cu124 to cu128, but both https://download.pytorch.org/whl/cu124 and https://download.pytorch.org/whl/cu128 appear to be incorrect. Neither of these indices for PyTorch wheels exist, which will cause the Docker build to fail. For CUDA 12.x compatible PyTorch versions, the correct index is cu121. Please update the URL to use the correct index.

RUN --mount=type=cache,target=/root/.cache/pip pip install -r /lightllm/requirements.txt --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu121


RUN --mount=type=cache,target=/root/.cache/pip pip install vllm --pre --extra-index-url https://wheels.vllm.ai/nightly
RUN --mount=type=cache,target=/root/.cache/pip git clone https://github.com/ModelTC/LightKernel.git && cd LightKernel && pip install --no-deps -v .
Expand Down