Skip to content

Commit

Permalink
fix: intel compute runtime packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bo0tzz committed Aug 20, 2024
1 parent aaf7a26 commit 8204fb7
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,22 @@ RUN ./configure-apt.sh && \
mesa-vulkan-drivers \
tini \
wget \
zlib1g && \
./install-ffmpeg.sh && \
apt-get install -t unstable --no-install-recommends -yqq \
$(if [ $(arch) = "x86_64" ]; then echo "intel-media-va-driver-non-free intel-opencl-icd"; fi) \
zlib1g \
libwebp7 \
libwebpdemux2 \
libwebpmux3 && \
libwebpmux3 \
ocl-icd-libopencl1 && \
./install-ffmpeg.sh && \
if [ $(arch) = "x86_64" ]; then \
apt-get install --no-install-recommends -yqq intel-media-va-driver-non-free && \
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17193.4/intel-igc-core_1.0.17193.4_amd64.deb && \
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17193.4/intel-igc-opencl_1.0.17193.4_amd64.deb && \
wget https://github.com/intel/compute-runtime/releases/download/24.26.30049.6/intel-opencl-icd-dbgsym_24.26.30049.6_amd64.ddeb && \
wget https://github.com/intel/compute-runtime/releases/download/24.26.30049.6/intel-opencl-icd_24.26.30049.6_amd64.deb && \
wget https://github.com/intel/compute-runtime/releases/download/24.26.30049.6/libigdgmm12_22.3.20_amd64.deb && \
dpkg -i *.deb && \
rm *.deb; \
fi && \
apt-get remove -yqq jq wget ca-certificates && \
apt-get autoremove -yqq && \
apt-get clean && \
Expand Down

0 comments on commit 8204fb7

Please sign in to comment.