Skip to content

Commit 51dc806

Browse files
committed
fix manylinux2014 Docker build: update CA certificates for Intel oneAPI repo
The CentOS 7 base image has outdated CA certificates that no longer trust Intel's yum.repos.intel.com TLS certificate, causing the Docker build to fail with curl#60.
1 parent 18d41bb commit 51dc806

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

docker/x86_64/manylinux2014/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ FROM quay.io/pypa/manylinux2014_x86_64:2024-07-15-c746fd8
1616

1717
COPY ./oneAPI.repo /etc/yum.repos.d/oneAPI.repo
1818

19+
# Update CA certificates so Intel's oneAPI repo TLS cert is trusted
20+
RUN yum update -y ca-certificates nss && update-ca-trust
21+
1922
# Install gcc-11
2023
RUN yum --disablerepo=epel install -y \
2124
devtoolset-11-gcc \

0 commit comments

Comments
 (0)