Skip to content

Commit dcf7527

Browse files
authored
update intel docker oneapi-basekit to 2024.1.1-devel-ubuntu22.04 (#7894)
In addition this reverts a workaround we had to do to workaround the upstream issue with expired intel GPG package keys in 2024.0.1-devel-ubuntu22.04
1 parent f2b5764 commit dcf7527

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

.devops/main-intel.Dockerfile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
ARG ONEAPI_VERSION=2024.0.1-devel-ubuntu22.04
1+
ARG ONEAPI_VERSION=2024.1.1-devel-ubuntu22.04
22

33
FROM intel/oneapi-basekit:$ONEAPI_VERSION as build
44

5-
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
6-
echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
7-
chmod 644 /usr/share/keyrings/intel-oneapi-archive-keyring.gpg && \
8-
rm /etc/apt/sources.list.d/intel-graphics.list && \
9-
wget -O- https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor | tee /usr/share/keyrings/intel-graphics.gpg > /dev/null && \
10-
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu jammy arc" | tee /etc/apt/sources.list.d/intel.gpu.jammy.list && \
11-
chmod 644 /usr/share/keyrings/intel-graphics.gpg
12-
135
ARG LLAMA_SYCL_F16=OFF
146
RUN apt-get update && \
157
apt-get install -y git

.devops/server-intel.Dockerfile

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
ARG ONEAPI_VERSION=2024.0.1-devel-ubuntu22.04
1+
ARG ONEAPI_VERSION=2024.1.1-devel-ubuntu22.04
22

33
FROM intel/oneapi-basekit:$ONEAPI_VERSION as build
44

5-
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
6-
echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
7-
chmod 644 /usr/share/keyrings/intel-oneapi-archive-keyring.gpg && \
8-
rm /etc/apt/sources.list.d/intel-graphics.list && \
9-
wget -O- https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor | tee /usr/share/keyrings/intel-graphics.gpg > /dev/null && \
10-
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu jammy arc" | tee /etc/apt/sources.list.d/intel.gpu.jammy.list && \
11-
chmod 644 /usr/share/keyrings/intel-graphics.gpg
12-
135
ARG LLAMA_SYCL_F16=OFF
146
RUN apt-get update && \
157
apt-get install -y git libcurl4-openssl-dev
@@ -27,14 +19,6 @@ RUN if [ "${LLAMA_SYCL_F16}" = "ON" ]; then \
2719

2820
FROM intel/oneapi-basekit:$ONEAPI_VERSION as runtime
2921

30-
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
31-
echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
32-
chmod 644 /usr/share/keyrings/intel-oneapi-archive-keyring.gpg && \
33-
rm /etc/apt/sources.list.d/intel-graphics.list && \
34-
wget -O- https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor | tee /usr/share/keyrings/intel-graphics.gpg > /dev/null && \
35-
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu jammy arc" | tee /etc/apt/sources.list.d/intel.gpu.jammy.list && \
36-
chmod 644 /usr/share/keyrings/intel-graphics.gpg
37-
3822
RUN apt-get update && \
3923
apt-get install -y libcurl4-openssl-dev
4024

0 commit comments

Comments
 (0)