We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4422af7 + 024a9c4 commit 581c501Copy full SHA for 581c501
Dockerfile.operator.stig-rhel
@@ -45,8 +45,9 @@ FROM $RHEL_STIG_BASE_IMAGE
45
ENV MFT_VERSION=4.33.0-169
46
47
# Install MFT (Mellanox Firmware Tools) - amd64/x86_64 only for STIG
48
-RUN dnf makecache && \
49
- dnf install -y curl && \
+# Note: curl-minimal is already in UBI base image, sufficient for downloads
+# Note: kmod is required by MFT
50
+RUN dnf install -y kmod && \
51
curl -fsSL https://www.mellanox.com/downloads/MFT/mft-${MFT_VERSION}-x86_64-rpm.tgz | tar -xz --no-same-owner -C /tmp && \
52
cd /tmp/mft-${MFT_VERSION}-x86_64-rpm && \
53
./install.sh --without-kernel && \
0 commit comments