diff --git a/Dockerfile b/Dockerfile index 03ba58d..5d20db9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,10 @@ ENV DEBIAN_FRONTEND=noninteractive # ============================================================================ # System Dependencies # ============================================================================ +RUN apt-get update && apt-get install -y \ + software-properties-common +RUN add-apt-repository ppa:kobuk-team/intel-graphics + RUN apt-get update && apt-get install -y \ ca-certificates \ curl \ @@ -30,10 +34,8 @@ RUN wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \ echo "deb [arch=amd64 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/gpu/ubuntu noble client" | \ tee /etc/apt/sources.list.d/intel-gpu-noble.list && \ apt-get update && apt-get install -y \ - intel-opencl-icd \ - intel-level-zero-gpu \ - level-zero \ - level-zero-dev && \ + libze-intel-gpu1 \ + intel-opencl-icd && \ rm -rf /var/lib/apt/lists/* # ============================================================================