2019-10-24 16:19:36 +02:00
|
|
|
FROM quay.io/pypa/manylinux1_x86_64:latest
|
2016-09-20 17:35:18 +02:00
|
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|
|
|
|
2019-05-22 09:05:11 +02:00
|
|
|
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/manylinux1-x64
|
2016-11-05 22:55:58 +01:00
|
|
|
|
2016-11-04 02:33:24 +01:00
|
|
|
#include "common.manylinux"
|
manylinux: Grant current user password less sudo access.
This will allow build script like "build-wheels.sh" to run command like
the following (see [1]):
sudo yum install -y atlas-devel
It will also allow to pip install using sudo and avoid error reported in [3].
That said, instead of running pip using sudo, the recommended approach
is to specify the "--user" flag [2]
[1] https://github.com/pypa/python-manylinux-demo/blob/893d92517e9e289b9d2ee063f19c3216a39534ab/travis/build-wheels.sh
[2] http://stackoverflow.com/questions/7143077/how-can-i-install-packages-in-my-home-folder-with-pip#7143496
[3] Error reported when running pip without "sudo pip install <packagename" or "pip install --user <packagename>"
```
Exception:
Traceback (most recent call last):
File "/opt/_internal/cpython-2.7.11-ucs2/lib/python2.7/site-packages/pip/basecommand.py", line 215, in main
status = self.run(options, args)
File "/opt/_internal/cpython-2.7.11-ucs2/lib/python2.7/site-packages/pip/commands/install.py", line 317, in run
prefix=options.prefix_path,
File "/opt/_internal/cpython-2.7.11-ucs2/lib/python2.7/site-packages/pip/req/req_set.py", line 736, in install
requirement.uninstall(auto_confirm=True)
File "/opt/_internal/cpython-2.7.11-ucs2/lib/python2.7/site-packages/pip/req/req_install.py", line 742, in uninstall
paths_to_remove.remove(auto_confirm)
File "/opt/_internal/cpython-2.7.11-ucs2/lib/python2.7/site-packages/pip/req/req_uninstall.py", line 115, in remove
renames(path, new_path)
File "/opt/_internal/cpython-2.7.11-ucs2/lib/python2.7/site-packages/pip/utils/__init__.py", line 267, in renames
shutil.move(old, new)
File "/opt/_internal/cpython-2.7.11-ucs2/lib/python2.7/shutil.py", line 303, in move
os.unlink(src)
OSError: [Errno 13] Permission denied: '/opt/_internal/cpython-2.7.11-ucs2/bin/easy_install'
```
2016-09-22 07:11:12 +02:00
|
|
|
|
2020-06-27 05:42:11 +02:00
|
|
|
#include "common.dockcross"
|
|
|
|
|
2018-04-13 20:56:49 +02:00
|
|
|
#include "common.docker"
|
|
|
|
|
2016-09-20 17:35:18 +02:00
|
|
|
ENV CROSS_TRIPLE x86_64-linux-gnu
|
|
|
|
ENV CROSS_ROOT /opt/rh/devtoolset-2/root/usr/bin
|
2016-09-20 19:17:15 +02:00
|
|
|
ENV AS=${CROSS_ROOT}/as \
|
|
|
|
AR=${CROSS_ROOT}/ar \
|
|
|
|
CC=${CROSS_ROOT}/gcc \
|
|
|
|
CPP=${CROSS_ROOT}/cpp \
|
|
|
|
CXX=${CROSS_ROOT}/g++ \
|
2018-05-25 18:34:20 +02:00
|
|
|
LD=${CROSS_ROOT}/ld \
|
|
|
|
FC=${CROSS_ROOT}/gfortran
|
2016-09-20 17:35:18 +02:00
|
|
|
|
|
|
|
COPY linux-x64/${CROSS_TRIPLE}-noop.sh /usr/bin/${CROSS_TRIPLE}-noop
|
|
|
|
|
2019-05-22 09:05:11 +02:00
|
|
|
COPY manylinux1-x64/Toolchain.cmake ${CROSS_ROOT}/../lib/
|
2016-09-20 17:35:18 +02:00
|
|
|
ENV CMAKE_TOOLCHAIN_FILE ${CROSS_ROOT}/../lib/Toolchain.cmake
|
2016-10-31 04:57:04 +01:00
|
|
|
|
|
|
|
# Build-time metadata as defined at http://label-schema.org
|
|
|
|
ARG BUILD_DATE
|
2019-05-22 09:05:11 +02:00
|
|
|
ARG IMAGE=dockcross/manylinux1-x64
|
2019-01-13 21:50:24 +01:00
|
|
|
ARG VERSION=latest
|
2016-10-31 04:57:04 +01:00
|
|
|
ARG VCS_REF
|
|
|
|
ARG VCS_URL
|
|
|
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
|
|
|
org.label-schema.name=$IMAGE \
|
2019-01-13 21:50:24 +01:00
|
|
|
org.label-schema.version=$VERSION \
|
2016-10-31 04:57:04 +01:00
|
|
|
org.label-schema.vcs-ref=$VCS_REF \
|
|
|
|
org.label-schema.vcs-url=$VCS_URL \
|
|
|
|
org.label-schema.schema-version="1.0"
|
2019-01-13 21:50:24 +01:00
|
|
|
ENV DEFAULT_DOCKCROSS_IMAGE ${IMAGE}:${VERSION}
|