Skip to content

Commit b8bfa46

Browse files
[Bugfix] Fix issues in CPU build Dockerfile (#12135)
Signed-off-by: Yuan Tang <[email protected]>
1 parent 1475847 commit b8bfa46

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

Dockerfile.cpu

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ RUN pip install intel_extension_for_pytorch==2.5.0
2626

2727
WORKDIR /workspace
2828

29-
COPY requirements-build.txt requirements-build.txt
3029
ARG PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu"
3130
ENV PIP_EXTRA_INDEX_URL=${PIP_EXTRA_INDEX_URL}
3231
RUN --mount=type=cache,target=/root/.cache/pip \
32+
--mount=type=bind,src=requirements-build.txt,target=requirements-build.txt \
3333
pip install --upgrade pip && \
3434
pip install -r requirements-build.txt
3535

3636
FROM cpu-test-1 AS build
3737

3838
WORKDIR /workspace/vllm
3939

40-
COPY requirements-common.txt requirements-common.txt
41-
COPY requirements-cpu.txt requirements-cpu.txt
4240
RUN --mount=type=cache,target=/root/.cache/pip \
41+
--mount=type=bind,src=requirements-common.txt,target=requirements-common.txt \
42+
--mount=type=bind,src=requirements-cpu.txt,target=requirements-cpu.txt \
4343
pip install -v -r requirements-cpu.txt
4444

4545
COPY . .

setup.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -472,13 +472,9 @@ def get_gaudi_sw_version():
472472

473473

474474
def get_vllm_version() -> str:
475-
# TODO: Revisit this temporary approach: https://github.com/vllm-project/vllm/issues/9182#issuecomment-2404860236
476-
try:
477-
version = get_version(
478-
write_to="vllm/_version.py", # TODO: move this to pyproject.toml
479-
)
480-
except LookupError:
481-
version = "0.0.0"
475+
version = get_version(
476+
write_to="vllm/_version.py", # TODO: move this to pyproject.toml
477+
)
482478

483479
sep = "+" if "+" not in version else "." # dev versions might contain +
484480

0 commit comments

Comments
 (0)