mirror of
				https://github.com/bensuperpc/dockcross.git
				synced 2025-11-04 01:46:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			478 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			478 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
RUN cd /opt && \
 | 
						|
  wget --progress=bar:force "http://smarden.org/runit/runit-2.1.2.tar.gz" && \
 | 
						|
  tar xvzf runit-2.1.2.tar.gz && \
 | 
						|
  cd admin/runit-2.1.2 && \
 | 
						|
  ./package/install
 | 
						|
 | 
						|
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 sudo && \
 | 
						|
  sed -i 's/Defaults    requiretty/#Defaults    requiretty/' /etc/sudoers && \
 | 
						|
  visudo -c
 | 
						|
 |