-
-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Installation]: Unable to build docker image using Dockerfile.openvino #6769
Labels
installation
Installation problems
Comments
Do we have a kind of integration test for Docker images that could show that #6517 broke OpenVINO docker image functionality? |
Yes, when I reset to the previous commit, I can build and spawn the container. (base) user@zahid:~$ bash test_llms_text-generation_vllm-openvino.sh
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your current environment
How you are installing vllm
Tried building vllm:openvino image using Dockerfile.openvino. However, the docker image build is failing with below error.
docker build -t vllm:openvino -f Dockerfile.openvino .
Below is the docker build error:
[ 3/12] WORKDIR /workspace 0.0s
[ 4/12] COPY requirements-build.txt /workspace/vllm/ 0.0s
[ 5/12] COPY requirements-common.txt /workspace/vllm/ 0.0s
[ 6/12] COPY requirements-openvino.txt /workspace/vllm/ 0.0s
[ 7/12] COPY vllm/ /workspace/vllm/vllm 0.1s
[ 8/12] COPY setup.py /workspace/vllm/ 0.0s
ERROR [ 9/12] RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" python3 -m pip install -r /workspace/ 21.9s
Dockerfile.openvino:19
17 |
18 | # install build requirements
19 | >>> RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" python3 -m pip install -r /workspace/vllm/requirements-build.txt
20 | # build vLLM with OpenVINO backend
21 | RUN PIP_PRE=1 PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu https://storage.openvinotoolkit.org/simple/wheels/nightly/" VLLM_TARGET_DEVICE="openvino" python3 -m pip install /workspace/vllm/
ERROR: failed to solve: process "/bin/sh -c PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu\" python3 -m pip install -r /workspace/vllm/requirements-build.txt" did not complete successfully: exit code: 1
The build was working properly until last week, but issues began arising starting from this commit: 1689219.
[CI/Build] Build on Ubuntu 20.04 instead of 22.04 (#6517)
The text was updated successfully, but these errors were encountered: