Skip to content
This repository was archived by the owner on Oct 19, 2025. It is now read-only.

Commit f44f8d0

Browse files
committed
Remove package for security reasons and update compute runtime dependencies.
1 parent 392e867 commit f44f8d0

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

Dockerfile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@ RUN apt-get update && \
134134
# Getting the latest versions of Intel's Compute Runtime and associated packages on Github and installing it will update everything we installed before.
135135
RUN mkdir neo
136136
WORKDIR /neo
137-
RUN wget --progress=dot:giga https://github.com/intel/intel-graphics-compiler/releases/download/v2.1.12/intel-igc-core-2_2.1.12+18087_amd64.deb && \
138-
wget --progress=dot:giga https://github.com/intel/intel-graphics-compiler/releases/download/v2.1.12/intel-igc-opencl-2_2.1.12+18087_amd64.deb && \
139-
wget --progress=dot:giga https://github.com/intel/compute-runtime/releases/download/24.45.31740.9/intel-level-zero-gpu_1.6.31740.9_amd64.deb && \
140-
wget --progress=dot:giga https://github.com/intel/compute-runtime/releases/download/24.45.31740.9/intel-opencl-icd_24.45.31740.9_amd64.deb && \
141-
wget --progress=dot:giga https://github.com/intel/compute-runtime/releases/download/24.45.31740.9/libigdgmm12_22.5.2_amd64.deb && \
137+
RUN wget --progress=dot:giga https://github.com/intel/intel-graphics-compiler/releases/download/v2.5.6/intel-igc-core-2_2.5.6+18417_amd64.deb && \
138+
wget --progress=dot:giga https://github.com/intel/intel-graphics-compiler/releases/download/v2.5.6/intel-igc-opencl-2_2.5.6+18417_amd64.deb && \
139+
wget --progress=dot:giga https://github.com/intel/compute-runtime/releases/download/24.52.32224.5/intel-level-zero-gpu_1.6.32224.5_amd64.deb && \
140+
wget --progress=dot:giga https://github.com/intel/compute-runtime/releases/download/24.52.32224.5/intel-opencl-icd_24.52.32224.5_amd64.deb && \
141+
wget --progress=dot:giga https://github.com/intel/compute-runtime/releases/download/24.52.32224.5/libigdgmm12_22.5.5_amd64.deb && \
142142
wget --progress=dot:giga https://github.com/oneapi-src/level-zero/releases/download/v1.19.2/level-zero_1.19.2+u22.04_amd64.deb && \
143143
wget --progress=dot:giga https://github.com/oneapi-src/level-zero/releases/download/v1.19.2/level-zero-devel_1.19.2+u22.04_amd64.deb && \
144144
dpkg -i -- *.deb
@@ -152,6 +152,9 @@ RUN apt-get update && \
152152
apt-get clean && \
153153
rm -rf /var/lib/apt/lists/*
154154

155+
# Remove linux-libc-dev for security reasons without disturbing anything else.
156+
RUN dpkg -r --force-depends linux-libc-dev
157+
155158
# Copy the startup script to the /bin/ folder and make executable.
156159
COPY startup.sh /bin/
157160
RUN chmod 755 /bin/startup.sh

Dockerfile.nightly

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,9 @@ RUN apt-get update && \
137137
apt-get clean && \
138138
rm -rf /var/lib/apt/lists/*
139139

140+
# Remove linux-libc-dev for security reasons without disturbing anything else.
141+
RUN dpkg -r --force-depends linux-libc-dev
142+
140143
# Copy the startup script to the /bin/ folder and make executable.
141144
COPY startup_nightly.sh /bin/
142145
RUN chmod 755 /bin/startup_nightly.sh

0 commit comments

Comments
 (0)