Skip to content

Commit 1682329

Browse files
committed
Update manylinux2014 base images with version patched for EOL
With CentOS 7 becoming EOL as of 2024-06-30, `yum` will no longer work in the `x86_64-linux-gnu` and `x86-linux-gnu` images shipped with v1.5.1 and earlier. In this commit, we update the `manylinux2014` base image for the `x86_64-linux-gnu` and `x86-linux-gnu` images to point at a version patched by `pypa` to use valid yum mirrors. See pypa/manylinux#1628 for more information. Note that the ubuntu image version is the same from v1.5.0 and v1.5.1.
1 parent 114086d commit 1682329

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile.mri.erb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<%
22
image = case platform
3-
when /x86_64-linux-gnu/ then "quay.io/pypa/manylinux2014_x86_64"
4-
when /x86-linux-gnu/ then "quay.io/pypa/manylinux2014_i686"
5-
else "ubuntu:20.04"
3+
when /x86_64-linux-gnu/ then "quay.io/pypa/manylinux2014_x86_64:latest@sha256:04bffb03cd21d7945c327f67745897adddeb1d6635d7"
4+
when /x86-linux-gnu/ then "quay.io/pypa/manylinux2014_i686:latest@sha256:516a28921cf4d2544be8278764e3e5d33da0a4b4e26bbbb"
5+
else "docker.io/library/ubuntu:20.04@sha256:80ef4a44043dec4490506e6cc4289eeda2d106a70148b74b5ae91ee670e9c35d"
66
end
77
manylinux = !!(image =~ /manylinux/)
88
%>

0 commit comments

Comments
 (0)