File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
internal/kmmmodule/dockerfiles
manual_install/src_img_build Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,9 @@ COPY internal/kmmmodule/ internal/kmmmodule/
2323# by leaving it empty we can ensure that the container and binary shipped on it will have the same platform.
2424RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o manager cmd/main.go
2525
26- FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4
26+ FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
2727ARG VERSION=none
28+ RUN microdnf -y update
2829WORKDIR /
2930COPY --from=builder /opt/app-root/src/manager .
3031LABEL name="cloud_ai_openshift_operator" \
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ ARG KERNEL_FULL_VERSION
88COPY --from=qaic-src /src /usr/src/qaic-${QAIC_VER}
99WORKDIR /usr/src/qaic-${QAIC_VER}
1010RUN ./dkms_prebuild.sh ${KERNEL_FULL_VERSION} /lib/modules/${KERNEL_FULL_VERSION}/build && KERNELRELEASE=${KERNEL_FULL_VERSION} make
11- FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4
11+ FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
1212ARG QAIC_VER
1313ARG KERNEL_FULL_VERSION
14- RUN microdnf -y install kmod && microdnf clean all && rm -rf /var/cache/yum
14+ RUN microdnf -y update && microdnf -y install kmod && microdnf clean all && rm -rf /var/cache/yum
1515RUN mkdir -p /opt/lib/modules/${KERNEL_FULL_VERSION}
1616COPY --from=qaic-src /firmware /firmware
1717COPY --from=builder /usr/src/qaic-${QAIC_VER}/qaic/qaic.ko /opt/lib/modules/${KERNEL_FULL_VERSION}/
Original file line number Diff line number Diff line change 1- FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4
2- RUN microdnf -y install kmod && microdnf clean all && rm -rf /var/cache/yum
1+ FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
2+ RUN microdnf -y update && microdnf -y install kmod && microdnf clean all && rm -rf /var/cache/yum
33RUN /usr/sbin/depmod ${KERNEL_FULL_VERSION}
44
Original file line number Diff line number Diff line change 1- FROM registry.access.redhat.com/ubi9/ubi-micro:9.4
1+ FROM registry.access.redhat.com/ubi9/ubi-micro:9.5
22ARG SRC_ROOT_DIR
33ARG VERSION=none
44COPY ${SRC_ROOT_DIR} /
You can’t perform that action at this time.
0 commit comments