-
Notifications
You must be signed in to change notification settings - Fork 0
/
manylinux1.Dockerfile
32 lines (22 loc) · 1.18 KB
/
manylinux1.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM quay.io/pypa/manylinux1_x86_64
MAINTAINER William Silversmith
ADD . /build
WORKDIR "/build"
ENV CXX "g++"
RUN rm -rf *.so build __pycache__ dist
RUN /opt/python/cp36-cp36m/bin/pip3.6 install pip --upgrade
RUN /opt/python/cp37-cp37m/bin/pip3.7 install pip --upgrade
RUN /opt/python/cp38-cp38/bin/pip3.8 install pip --upgrade
RUN /opt/python/cp36-cp36m/bin/pip3.6 install -r requirements.txt pytest
RUN /opt/python/cp37-cp37m/bin/pip3.7 install -r requirements.txt pytest
RUN /opt/python/cp38-cp38/bin/pip3.8 install -r requirements.txt pytest
RUN /opt/python/cp36-cp36m/bin/python3.6 setup.py develop
RUN /opt/python/cp37-cp37m/bin/python3.7 setup.py develop
RUN /opt/python/cp38-cp38/bin/python3.8 setup.py develop
RUN /opt/python/cp36-cp36m/bin/python3.6 -m pytest -v -x automated_test.py
RUN /opt/python/cp37-cp37m/bin/python3.7 -m pytest -v -x automated_test.py
RUN /opt/python/cp38-cp38/bin/python3.8 -m pytest -v -x automated_test.py
RUN /opt/python/cp36-cp36m/bin/python3.6 setup.py bdist_wheel
RUN /opt/python/cp37-cp37m/bin/python3.7 setup.py bdist_wheel
RUN /opt/python/cp38-cp38/bin/python3.8 setup.py bdist_wheel
RUN for whl in `ls dist/*.whl`; do auditwheel repair $whl; done