mirror of
				https://github.com/bensuperpc/dockcross.git
				synced 2025-10-30 23:56:23 +01:00 
			
		
		
		
	```txt
411.0 /tmp/tmp.9qZYWcxd6F/rustup-init: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory
411.0 /tmp/tmp.9qZYWcxd6F/rustup-init: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory
------
Dockerfile:97
--------------------
  96 |
  97 | >>> RUN \
  98 | >>>   X86_FLAG=$([ "$DEFAULT_DOCKCROSS_IMAGE" = "dockcross/manylinux2014-x86" ] && echo "-32" || echo "") && \
  99 | >>>   /buildscripts/build-and-install-openssl.sh $X86_FLAG && \
 100 | >>>   /buildscripts/build-and-install-openssh.sh && \
 101 | >>>   /buildscripts/build-and-install-curl.sh && \
 102 | >>>   /buildscripts/build-and-install-git.sh && \
 103 | >>>   /buildscripts/build-and-install-cmake.sh $X86_FLAG && \
 104 | >>>   /buildscripts/build-and-install-rustup.sh && \
 105 | >>>   /buildscripts/install-liquidprompt-binary.sh && \
 106 | >>>   PYTHON=$([ -e /opt/python/cp38-cp38/bin/python ] && echo "/opt/python/cp38-cp38/bin/python" || echo "python3") && \
 107 | >>>   /buildscripts/install-python-packages.sh -python ${PYTHON} && \
 108 | >>>   /buildscripts/build-and-install-ninja.sh -python ${PYTHON} && \
 109 | >>>   /buildscripts/build-and-install-flatcc.sh && \
 110 | >>>   rm -rf /buildscripts
 111 |
--------------------
ERROR: failed to solve: process "/bin/sh -c X86_FLAG=$([ \"$DEFAULT_DOCKCROSS_IMAGE\" = \"dockcross/manylinux2014-x86\" ] && echo \"-32\" || echo \"\") &&   /buildscripts/build-and-install-openssl.sh $X86_FLAG &&   /buildscripts/build-and-install-openssh.sh &&   /buildscripts/build-and-install-curl.sh &&   /buildscripts/build-and-install-git.sh &&   /buildscripts/build-and-install-cmake.sh $X86_FLAG &&   /buildscripts/build-and-install-rustup.sh &&   /buildscripts/install-liquidprompt-binary.sh &&   PYTHON=$([ -e /opt/python/cp38-cp38/bin/python ] && echo \"/opt/python/cp38-cp38/bin/python\" || echo \"python3\") &&   /buildscripts/install-python-packages.sh -python ${PYTHON} &&   /buildscripts/build-and-install-ninja.sh -python ${PYTHON} &&   /buildscripts/build-and-install-flatcc.sh &&   rm -rf /buildscripts" did not complete successfully: exit code: 1
```
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			907 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			907 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Image build scripts
 | |
| COPY \
 | |
|   manylinux-common/install-python-packages.sh \
 | |
|   /buildscripts/
 | |
| 
 | |
| RUN \
 | |
|   set -x && \
 | |
|   yum -y install \
 | |
|     $([ "$DEFAULT_DOCKCROSS_IMAGE" = "dockcross/manylinux2014-x86" ] && echo "" || echo "epel-release") \
 | |
|     gpg \
 | |
|     python3-devel \
 | |
|     zlib-devel \
 | |
|     gettext \
 | |
|     openssh-clients \
 | |
|     pax \
 | |
|     wget \
 | |
|     nasm \
 | |
|     zip \
 | |
|     libatomic \
 | |
|   && \
 | |
|   yum clean all && \
 | |
|   # Remove sudo provided by devtoolset since it doesn't work with
 | |
|   # our sudo wrapper calling gosu.
 | |
|   rm -f /opt/rh/devtoolset-2/root/usr/bin/sudo && \
 | |
|   rm -f /opt/rh/devtoolset-7/root/usr/bin/sudo && \
 | |
|   rm -f /opt/rh/devtoolset-8/root/usr/bin/sudo && \
 | |
|   rm -f /opt/rh/devtoolset-9/root/usr/bin/sudo && \
 | |
|   rm -f /opt/rh/devtoolset-10/root/usr/bin/sudo && \
 | |
|   /buildscripts/install-python-packages.sh && \
 | |
|   rm -rf /buildscripts
 | |
| 
 | |
| # Runtime scripts
 | |
| COPY manylinux-common/pre_exec.sh /dockcross/
 |