mirror of
				https://github.com/bensuperpc/dockcross.git
				synced 2025-11-04 09:56:23 +01:00 
			
		
		
		
	This will simply the removal of deprecated "org.label-schema" annotation [1] and the introduction of open containers ones [2] [1] http://label-schema.org/rc1/ [2] https://github.com/opencontainers/image-spec/blob/master/annotations.md
		
			
				
	
	
		
			31 lines
		
	
	
		
			829 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			829 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM quay.io/pypa/manylinux1_i686:latest
 | 
						|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
 | 
						|
 | 
						|
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/manylinux1-x86
 | 
						|
 | 
						|
#include "common.manylinux"
 | 
						|
 | 
						|
#include "common.dockcross"
 | 
						|
 | 
						|
#include "common.docker"
 | 
						|
 | 
						|
ENV CROSS_TRIPLE i686-linux-gnu
 | 
						|
ENV CROSS_ROOT /opt/rh/devtoolset-2/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 manylinux1-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"
 |