Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .cd/Dockerfile.rhel.ubi.vllm
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ ENV TORCH_TYPE=${TORCH_TYPE} \
COPY LICENSE /licenses/

# System setup - Remove FIPS provider and add EPEL
RUN dnf -y update && \
dnf install -y --allowerasing python3-dnf-plugin-versionlock && \
RUN dnf install -y --allowerasing python3-dnf-plugin-versionlock && \
dnf versionlock add redhat-release* && \
dnf -y update && \
# '|| true' is added to support RHEL 9.4 in which openssl-fips-provider-so is not installed
rpm -e --nodeps openssl-fips-provider-so || true && \
dnf install -y --allowerasing https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
Expand Down