forked from janelia-flyem/compressedseg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanylinux2014.Dockerfile
38 lines (27 loc) · 1.43 KB
/
manylinux2014.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
33
34
35
36
37
38
FROM quay.io/pypa/manylinux2014_x86_64
MAINTAINER William Silversmith
ADD . /compressedseg
WORKDIR "/compressedseg"
ENV CC "g++"
RUN rm -rf *.so build __pycache__ dist
RUN /opt/python/cp35-cp35m/bin/pip3.5 install pip --upgrade
RUN /opt/python/cp35-cp35m/bin/pip3.5 install numpy
RUN /opt/python/cp35-cp35m/bin/python3.5 setup.py develop
RUN /opt/python/cp36-cp36m/bin/pip3.6 install pip --upgrade
RUN /opt/python/cp36-cp36m/bin/pip3.6 install numpy
RUN /opt/python/cp36-cp36m/bin/python3.6 setup.py develop
RUN /opt/python/cp37-cp37m/bin/pip3.7 install pip --upgrade
RUN /opt/python/cp37-cp37m/bin/pip3.7 install numpy
RUN /opt/python/cp37-cp37m/bin/python3.7 setup.py develop
RUN /opt/python/cp38-cp38/bin/pip3.8 install pip --upgrade
RUN /opt/python/cp38-cp38/bin/pip3.8 install numpy
RUN /opt/python/cp38-cp38/bin/python3.8 setup.py develop
#RUN /opt/python/cp39-cp39/bin/pip3.9 install pip --upgrade
#RUN /opt/python/cp39-cp39/bin/pip3.9 install numpy
#RUN /opt/python/cp39-cp39/bin/python3.9 setup.py develop
RUN /opt/python/cp35-cp35m/bin/python3.5 setup.py sdist bdist_wheel
RUN /opt/python/cp36-cp36m/bin/python3.6 setup.py sdist bdist_wheel
RUN /opt/python/cp37-cp37m/bin/python3.7 setup.py sdist bdist_wheel
RUN /opt/python/cp38-cp38/bin/python3.8 setup.py sdist bdist_wheel
#RUN /opt/python/cp39-cp39/bin/python3.9 setup.py sdist bdist_wheel
RUN for whl in `ls dist/*.whl`; do auditwheel repair $whl --plat manylinux2014_x86_64; done