"vllm/vscode:/vscode.git/clone" did not exist on "b4e2916721463b43f3b06ccc980050dfb37b615a"
Dockerfile.xpu 1.47 KB
Newer Older
1
FROM intel/oneapi-basekit:2024.2.1-0-devel-ubuntu22.04
2
3
4
5
6
7
8
9

RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
    echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
    chmod 644 /usr/share/keyrings/intel-oneapi-archive-keyring.gpg && \
    wget -O- https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor | tee /usr/share/keyrings/intel-graphics.gpg > /dev/null && \
    echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu jammy arc" | tee /etc/apt/sources.list.d/intel.gpu.jammy.list && \
    chmod 644 /usr/share/keyrings/intel-graphics.gpg

10
11
RUN apt-get update  -y && \
    apt-get install -y curl libicu70 lsb-release git wget vim numactl python3 python3-pip ffmpeg libsm6 libxext6 libgl1
12

13
14
15
16
COPY ./ /workspace/vllm

WORKDIR /workspace/vllm

17
18
19
20
RUN --mount=type=cache,target=/root/.cache/pip \
    pip install -v --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ \
        cmake>=3.26 ninja packaging setuptools-scm>=8 wheel jinja2 \
        -r requirements-xpu.txt
21

22
23
24
RUN --mount=type=cache,target=/root/.cache/pip \
    --mount=type=bind,source=.git,target=.git \
    VLLM_TARGET_DEVICE=xpu python3 setup.py install
25
26

CMD ["/bin/bash"]