File tree 3 files changed +26
-4
lines changed
3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ ifeq ($(BASE_OS),ubuntu)
95
95
BASE_IMAGE ?= ubuntu:$(BASE_OS_TAG_UBUNTU)
96
96
BASE_IMAGE_RELEASE=$(BASE_IMAGE)
97
97
endif
98
- INSTALL_DRIVER_VERSION ?= "22.35.24055 "
98
+ INSTALL_DRIVER_VERSION ?= "22.43.24595 "
99
99
DLDT_PACKAGE_URL ?= http://s3.toolbox.iotg.sclab.intel.com/ov-packages/l_openvino_toolkit_ubuntu20_2023.0.0.10908.5adf3b5ca82_x86_64.tgz
100
100
endif
101
101
ifeq ($(BASE_OS ) ,redhat)
@@ -108,7 +108,7 @@ ifeq ($(BASE_OS),redhat)
108
108
BASE_IMAGE_RELEASE=registry.access.redhat.com/ubi8/ubi-minimal:$(BASE_OS_TAG_REDHAT)
109
109
endif
110
110
DIST_OS =redhat
111
- INSTALL_DRIVER_VERSION ?= "22.28.23726 "
111
+ INSTALL_DRIVER_VERSION ?= "22.43.24595 "
112
112
DLDT_PACKAGE_URL ?= http://s3.toolbox.iotg.sclab.intel.com/ov-packages/l_openvino_toolkit_rhel8_2023.0.0.10908.5adf3b5ca82_x86_64.tgz
113
113
endif
114
114
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ LABEL "description"="OpenVINO(TM) Model Server is a solution for serving AI mode
39
39
ARG INSTALL_RPMS_FROM_URL=
40
40
ENV INSTALL_RPMS_FROM_URL=$INSTALL_RPMS_FROM_URL
41
41
42
- ARG INSTALL_DRIVER_VERSION="22.28.23726 "
42
+ ARG INSTALL_DRIVER_VERSION="22.43.24595 "
43
43
ENV INSTALL_DRIVER_VERSION=$INSTALL_DRIVER_VERSION
44
44
ARG NVIDIA=0
45
45
ARG GPU=1
@@ -91,6 +91,15 @@ RUN if [ -f /usr/bin/dnf ] ; then export DNF_TOOL=dnf ; else export DNF_TOOL=mic
91
91
rpm -ivh https://repositories.intel.com/graphics/rhel/8.5-devel/intel-level-zero-gpu-1.3.23453-i392.el8.x86_64.rpm ; \
92
92
rpm -ivh https://repositories.intel.com/graphics/rhel/8.5-devel/level-zero-1.8.1-i392.el8.x86_64.rpm ; \
93
93
;; \
94
+ "22.43.24595") \
95
+ $DNF_TOOL install -y libedit ; \
96
+ rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-gmmlib-22.3.1-i529.el8.x86_64.rpm ; \
97
+ rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-igc-core-1.0.12504.6-i537.el8.x86_64.rpm ; \
98
+ rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-igc-opencl-1.0.12504.6-i537.el8.x86_64.rpm ; \
99
+ rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-opencl-22.43.24595.35-i538.el8.x86_64.rpm ; \
100
+ rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-level-zero-gpu-1.3.24595.35-i538.el8.x86_64.rpm ; \
101
+ rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/level-zero-1.8.8-i524.el8.x86_64.rpm ; \
102
+ ;; \
94
103
*) \
95
104
echo "ERROR: Unrecognized driver ${INSTALL_DRIVER_VERSION}." ; \
96
105
exit 1 ; \
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ FROM $BASE_IMAGE as release
73
73
ARG INSTALL_RPMS_FROM_URL=
74
74
ENV INSTALL_RPMS_FROM_URL=$INSTALL_RPMS_FROM_URL
75
75
ENV HDDL_INSTALL_DIR=/ovms/lib/hddl
76
- ARG INSTALL_DRIVER_VERSION="22.35.24055 "
76
+ ARG INSTALL_DRIVER_VERSION="22.43.24595 "
77
77
ENV INSTALL_DRIVER_VERSION=$INSTALL_DRIVER_VERSION
78
78
ARG GPU=1
79
79
ARG NVIDIA=0
@@ -130,6 +130,19 @@ RUN apt-get update -y ; \
130
130
apt-get clean ; \
131
131
rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* ; \
132
132
;; \
133
+ "22.43.24595") \
134
+ apt-get update && apt-get install -y --no-install-recommends gpg gpg-agent && \
135
+ curl https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor --output /usr/share/keyrings/intel-graphics.gpg && \
136
+ echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu focal-legacy main' | tee /etc/apt/sources.list.d/intel.gpu.focal.list && \
137
+ apt-get update && \
138
+ apt-get install -y --no-install-recommends \
139
+ intel-opencl-icd=22.43.24595.35+i538~20.04 \
140
+ intel-level-zero-gpu=1.3.24595.35+i538~20.04 \
141
+ level-zero=1.8.8+i524~u20.04 && \
142
+ apt-get purge gpg gpg-agent --yes && apt-get --yes autoremove && \
143
+ apt-get clean ; \
144
+ rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* ; \
145
+ ;; \
133
146
*) \
134
147
dpkg -P intel-gmmlib intel-igc-core intel-igc-opencl intel-level-zero-gpu intel-ocloc intel-opencl intel-opencl-icd && \
135
148
apt-get update && apt-get -y --no-install-recommends install dpkg-dev && rm -rf /var/lib/apt/lists/* && \
You can’t perform that action at this time.
0 commit comments