1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

fix(ml): broken openvino builds (#11818)

* fix: install opencl from github releases directly to pin versions

* chore: remove configuration-apt script
This commit is contained in:
Zack Pollard 2024-08-15 19:27:18 +01:00 committed by GitHub
parent 3ab7438036
commit f40a4fc1c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,11 +38,17 @@ FROM python:3.11-slim-bookworm@sha256:1c0c54195c7c7b46e61a2f3b906e9b55a8165f2038
FROM prod-cpu AS prod-openvino FROM prod-cpu AS prod-openvino
COPY scripts/configure-apt.sh ./ RUN apt-get update && \
RUN ./configure-apt.sh && \ apt-get install --no-install-recommends -yqq ocl-icd-libopencl1 wget && \
apt-get update && \ wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17193.4/intel-igc-core_1.0.17193.4_amd64.deb && \
apt-get install -t unstable --no-install-recommends -yqq intel-opencl-icd && \ wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17193.4/intel-igc-opencl_1.0.17193.4_amd64.deb && \
rm configure-apt.sh 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 && \
apt-get remove wget -yqq && \
rm -rf /var/lib/apt/lists/*
FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04@sha256:fa44193567d1908f7ca1f3abf8623ce9c63bc8cba7bcfdb32702eb04d326f7a8 AS prod-cuda FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04@sha256:fa44193567d1908f7ca1f3abf8623ce9c63bc8cba7bcfdb32702eb04d326f7a8 AS prod-cuda