Skip to content

Commit fc7ecdf

Browse files
committed
docker: Update dockerfile with driver version 682.38
Update GPU driver and FW version to 682.38 release: https://dgpu-docs.intel.com/releases/production_682.38_20230929.html. Remove extra build argument KERNEL_VERSION. Use ubi-minimal 9.2 image for packaging GPU driver container. Remove firmware for Max series GPU since we only support Flex series GPU now. Signed-off-by: Hersh Pathak hersh.pathak@intel.com
1 parent 626f62f commit fc7ecdf

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

docker/intel-dgpu-driver.Dockerfile

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Intel Data Center GPU driver components combinations.
5-
ARG I915_RELEASE=I915_23WW31.5_682.14_23.6.24_230425.29
6-
ARG FIRMWARE_RELEASE=23WW31.5_682.14
5+
ARG I915_RELEASE=I915_23WW39.5_682.38_23.6.37_230425.49
6+
ARG FIRMWARE_RELEASE=23WW39.5_682.38
77

88
# Intel Data Center GPU Driver for OpenShift version.
99
ARG DRIVER_VERSION=2.0.0
1010

1111
# RHCOS Kernel version supported by the above driver version.
12-
ARG KERNEL_VERSION
13-
ARG KERNEL_FULL_VERSION=${KERNEL_VERSION}
12+
ARG KERNEL_FULL_VERSION
1413

1514
# Red Hat DTK image is used as builder image to build kernel driver modules.
1615
# Appropriate DTK image is provided with the OCP release, to guarantee compatibility
@@ -39,11 +38,10 @@ RUN git clone -b ${I915_RELEASE} --single-branch https://github.com/intel-gpu/in
3938
RUN git clone -b ${FIRMWARE_RELEASE} --single-branch https://github.com/intel-gpu/intel-gpu-firmware.git \
4039
&& install -D /build/intel-gpu-firmware/COPYRIGHT /licenses/firmware/COPYRIGHT \
4140
&& install -D /build/intel-gpu-firmware/COPYRIGHT /build/firmware/license/COPYRIGHT \
42-
&& install -D /build/intel-gpu-firmware/firmware/dg2* /build/firmware/ \
43-
&& install -D /build/intel-gpu-firmware/firmware/pvc* /build/firmware/
41+
&& install -D /build/intel-gpu-firmware/firmware/dg2* /build/firmware/
4442

4543
# Packaging Intel GPU driver components in the base UBI image for certification
46-
FROM registry.redhat.io/ubi8/ubi-minimal:latest
44+
FROM registry.redhat.io/ubi9/ubi-minimal:9.2
4745
ARG DRIVER_VERSION
4846
ARG KERNEL_FULL_VERSION
4947
ARG I915_RELEASE
@@ -62,8 +60,7 @@ and Firmware release:${FIRMWARE_RELEASE}. This driver container image is support
6260
RUN microdnf update -y && rm -rf /var/cache/yum
6361
RUN microdnf -y install kmod findutils && microdnf clean all
6462
COPY --from=builder /licenses/ /licenses/
65-
COPY --from=builder /etc/driver-toolkit-release.json /etc/
6663
COPY --from=builder /lib/modules/${KERNEL_FULL_VERSION}/ /opt/lib/modules/${KERNEL_FULL_VERSION}/
6764
COPY --from=builder /build/firmware/ /firmware/i915/
6865

69-
RUN depmod -b /opt ${KERNEL_FULL_VERSION}
66+
RUN depmod -b /opt ${KERNEL_FULL_VERSION}

0 commit comments

Comments
 (0)