dockcross/manylinux_2_28-x64/Dockerfile.in
Phillip Schichtel 1123bbcb3f
upgrade the quay.io/pypa/manylinux* base images to 2024-07-20-e0def9a
the manylinux images failed to build with the old base images due to invalid signatures and/or 404 errors in old centos 7 repos.
2024-07-23 23:04:46 +02:00

30 lines
814 B
Docker

# Recent versions address yum functionality
FROM quay.io/pypa/manylinux_2_28_x86_64:2024-07-20-e0def9a
LABEL maintainer="Matt McCormick matt.mccormick@kitware.com"
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/manylinux_2_28-x64
#include "common.manylinux_2_28"
#include "common.dockcross"
#include "common.docker"
ENV CROSS_TRIPLE x86_64-linux-gnu
ENV CROSS_ROOT /opt/rh/gcc-toolset-12/root/bin/
ENV AS=${CROSS_ROOT}/as \
AR=${CROSS_ROOT}/ar \
CC=${CROSS_ROOT}/gcc \
CPP=${CROSS_ROOT}/cpp \
CXX=${CROSS_ROOT}/g++ \
LD=${CROSS_ROOT}/ld \
FC=${CROSS_ROOT}/gfortran
COPY linux-x64/${CROSS_TRIPLE}-noop.sh /usr/bin/${CROSS_TRIPLE}-noop
COPY manylinux_2_28-x64/Toolchain.cmake ${CROSS_ROOT}/../lib/
ENV CMAKE_TOOLCHAIN_FILE ${CROSS_ROOT}/../lib/Toolchain.cmake
#include "common.label-and-env"