Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.daemonset.ocp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN dnf module enable -y nvidia-driver:580 && \
echo "SUCCESS: Verified libnvidia-ml version ${INSTALLED_VERSION}"

# Final stage - use clean UBI9 minimal to avoid CVEs from NVIDIA base image (CVE-2025-66471, CVE-2026-21441)
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:7d4e47500f28ac3a2bff06c25eff9127ff21048538ae03ce240d57cf756acd00
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:062c52ff973065752b0965787649db2bcf551a6c727a00e95a3eb42cebadbdab

# Copy NVIDIA libraries from build stage and create symlink for go-nvml
COPY --from=nvidia-libs /usr/lib64/libnvidia-ml.so* /usr/lib64/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ocp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /workspace
COPY . .
RUN GO_BUILD_PACKAGES=./cmd/das-operator make

FROM registry.redhat.io/ubi9/ubi-minimal@sha256:7d4e47500f28ac3a2bff06c25eff9127ff21048538ae03ce240d57cf756acd00
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:062c52ff973065752b0965787649db2bcf551a6c727a00e95a3eb42cebadbdab
WORKDIR /
COPY --from=build /workspace/das-operator /usr/bin
USER 65532:65532
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.scheduler.ocp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV GOFLAGS=-mod=mod
RUN GO_BUILD_PACKAGES=./cmd/das-scheduler make

# runtime stage
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:7d4e47500f28ac3a2bff06c25eff9127ff21048538ae03ce240d57cf756acd00
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:062c52ff973065752b0965787649db2bcf551a6c727a00e95a3eb42cebadbdab

WORKDIR /
COPY --from=build /workspace/das-scheduler /usr/bin
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.webhook.ocp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /workspace
COPY . .
RUN GO_BUILD_PACKAGES=./cmd/das-webhook make

FROM registry.redhat.io/ubi9/ubi-minimal@sha256:7d4e47500f28ac3a2bff06c25eff9127ff21048538ae03ce240d57cf756acd00
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:062c52ff973065752b0965787649db2bcf551a6c727a00e95a3eb42cebadbdab
WORKDIR /
COPY --from=build /workspace/das-webhook /usr/bin
USER 65532:65532
Expand Down