mirror of
				https://github.com/bensuperpc/dockcross.git
				synced 2025-11-04 09:56:23 +01:00 
			
		
		
		
	Backported from thewtex/docker-centos-build@26f7fd3 CentOS 5 is no longer supported and requests to obtain information from the mirrors fails. However, the packages are still available on the "Vault" mirrors. Comment out the `mirrorlist` entries and set `enabled=0` in CentOS-Base.repo, add entries for 5.11 in CentOS-Vault.repo and mark them `enabled=1`.
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
 | 
						|
ADD imagefiles/etc/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo
 | 
						|
ADD imagefiles/etc/CentOS-Vault.repo /etc/yum.repos.d/CentOS-Vault.repo
 | 
						|
ADD imagefiles/etc/libselinux.repo /etc/yum.repos.d/libselinux.repo
 | 
						|
 | 
						|
ENV GOSU_VERSION 1.10
 | 
						|
RUN set -x \
 | 
						|
	&& yum -y install epel-release \
 | 
						|
	&& yum -y install wget gpg \
 | 
						|
	&& dpkgArch=$(if test $(uname -m) = "x86_64"; then echo amd64; else echo i386; fi) \
 | 
						|
	&& wget -O /usr/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch" \
 | 
						|
	&& wget -O /tmp/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc" \
 | 
						|
	&& export GNUPGHOME="$(mktemp -d)" \
 | 
						|
	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
 | 
						|
	&& gpg --batch --verify /tmp/gosu.asc /usr/bin/gosu \
 | 
						|
	&& rm -r "$GNUPGHOME" /tmp/gosu.asc \
 | 
						|
	&& chmod +x /usr/bin/gosu \
 | 
						|
	&& gosu nobody true \
 | 
						|
	&& yum clean all
 | 
						|
 | 
						|
COPY manylinux-common/install-python-packages.sh /usr/local/bin
 | 
						|
RUN /usr/local/bin/install-python-packages.sh
 | 
						|
 | 
						|
COPY manylinux-common/pre_exec.sh /dockcross/pre_exec.sh
 | 
						|
 | 
						|
RUN yum -y install pax zip \
 | 
						|
  && yum clean all
 |