Skip to content

Commit

Permalink
update docker file with dependency installation (vllm-project#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
yma11 authored and jikunshang committed Aug 19, 2024
1 parent bdecd8d commit e9e3a5c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile.xpu
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRO
RUN apt-get update -y \
&& apt-get install -y curl libicu70 lsb-release git wget vim numactl python3 python3-pip

RUN git clone https://github.com/intel/pti-gpu && \
cd pti-gpu/sdk && \
mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/icpx_toolchain.cmake -DBUILD_TESTING=OFF .. && \
make -j && \
cmake --install . --config Release --prefix "/usr/local"

COPY ./ /workspace/vllm

WORKDIR /workspace/vllm
Expand Down

0 comments on commit e9e3a5c

Please sign in to comment.