Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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/*

# ============================================================================
Expand Down