mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
Bensuperpc
e0d2efb0e8
Return to older verion of manylinux: From manylinux2010_x86_64:latest to manylinux2010_x86_64:2021-04-09-c61dabe From manylinux2010_i686:latest to manylinux2010_i686:2021-04-09-c61dabe From manylinux2014_x86_64:latest to manylinux2014_x86_64:2021-04-09-c61dabe From manylinux2014_i686:latest to manylinux2014_i686:2021-04-09-c61dabe Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
36 lines
1.1 KiB
Docker
36 lines
1.1 KiB
Docker
FROM quay.io/pypa/manylinux2010_i686:2021-04-09-c61dabe
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|
|
|
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/manylinux2010-x86
|
|
|
|
#include "common.manylinux"
|
|
|
|
#include "common.dockcross"
|
|
|
|
#include "common.docker"
|
|
|
|
# Override yum to work around the problem with newly built libcurl.so.4
|
|
# https://access.redhat.com/solutions/641093
|
|
RUN echo $'#!/bin/bash\n\
|
|
LD_PRELOAD=/usr/lib/libcurl.so.4 /usr/bin/yum "$@"' > /usr/local/bin/yum && chmod a+x /usr/local/bin/yum
|
|
|
|
ENV CROSS_TRIPLE i686-linux-gnu
|
|
ENV CROSS_ROOT /opt/rh/devtoolset-8/root/usr/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-x86/${CROSS_TRIPLE}-noop.sh /usr/bin/${CROSS_TRIPLE}-noop
|
|
|
|
COPY manylinux2010-x86/Toolchain.cmake ${CROSS_ROOT}/../lib/
|
|
ENV CMAKE_TOOLCHAIN_FILE ${CROSS_ROOT}/../lib/Toolchain.cmake
|
|
|
|
COPY linux-x86/linux32-entrypoint.sh /dockcross/
|
|
ENTRYPOINT ["/dockcross/linux32-entrypoint.sh"]
|
|
|
|
#include "common.label-and-env"
|