File tree Expand file tree Collapse file tree 4 files changed +6
-72
lines changed Expand file tree Collapse file tree 4 files changed +6
-72
lines changed Original file line number Diff line number Diff line change 1
- # Version: 20221205
1
+ # Version: 20230117
2
2
# Image name: quay.io/opencv-ci/opencv-python-manylinux2014-aarch64
3
3
4
4
FROM quay.io/pypa/manylinux2014_aarch64:latest
@@ -11,28 +11,16 @@ ARG NASM_VERSION=2.15.04
11
11
ARG OPENSSL_VERSION=1_1_1s
12
12
ARG QT_VERSION=5.15.0
13
13
ARG YASM_VERSION=1.3.0
14
- ARG ZLIB_VERSION=1.2.13
15
14
16
15
ENV LD_LIBRARY_PATH /usr/local/lib:$LD_LIBRARY_PATH
17
16
18
17
# epel-release need for aarch64 to get openblas packages
19
- RUN yum install bzip2-devel curl-devel xcb-util-renderutil-devel xcb-util-devel xcb-util-image-devel xcb-util-keysyms-devel xcb-util-wm-devel mesa-libGL-devel libxkbcommon-devel libxkbcommon-x11-devel libXi-devel lapack-devel epel-release -y && \
18
+ RUN yum install curl-devel xcb-util-renderutil-devel xcb-util-devel xcb-util-image-devel xcb-util-keysyms-devel xcb-util-wm-devel mesa-libGL-devel libxkbcommon-devel libxkbcommon-x11-devel libXi-devel lapack-devel epel-release -y && \
20
19
yum install openblas-devel dejavu-sans-fonts -y && \
21
20
cp /usr/include/lapacke/lapacke*.h /usr/include/ && \
22
21
curl https://raw.githubusercontent.com/xianyi/OpenBLAS/v0.3.3/cblas.h -o /usr/include/cblas.h && \
23
22
# libpng will be built from source
24
- yum remove libpng zlib-devel bzip2-devel -y
25
-
26
- RUN mkdir ~/zlib_sources && \
27
- cd ~/zlib_sources && \
28
- curl -O -L https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz && \
29
- tar -xf zlib-${ZLIB_VERSION}.tar.gz && \
30
- cd zlib-${ZLIB_VERSION} && \
31
- ./configure --prefix=/usr/local && \
32
- make && \
33
- make install && \
34
- cd .. && \
35
- rm -rf ~/zlib_sources
23
+ yum remove libpng -y
36
24
37
25
RUN mkdir ~/libpng_sources && \
38
26
cd ~/libpng_sources && \
Original file line number Diff line number Diff line change 1
- # Version: 20221205
1
+ # Version: 20230117
2
2
# Image name: quay.io/opencv-ci/opencv-python-manylinux2014-x86-64
3
3
4
4
FROM quay.io/pypa/manylinux2014_x86_64:latest
@@ -16,23 +16,12 @@ ARG ZLIB_VERSION=1.2.13
16
16
ENV LD_LIBRARY_PATH /usr/local/lib:$LD_LIBRARY_PATH
17
17
18
18
# epel-release need for aarch64 to get openblas packages
19
- RUN yum install bzip2-devel curl-devel xcb-util-renderutil-devel xcb-util-devel xcb-util-image-devel xcb-util-keysyms-devel xcb-util-wm-devel mesa-libGL-devel libxkbcommon-devel libxkbcommon-x11-devel libXi-devel lapack-devel epel-release -y && \
19
+ RUN yum install curl-devel xcb-util-renderutil-devel xcb-util-devel xcb-util-image-devel xcb-util-keysyms-devel xcb-util-wm-devel mesa-libGL-devel libxkbcommon-devel libxkbcommon-x11-devel libXi-devel lapack-devel epel-release -y && \
20
20
yum install openblas-devel dejavu-sans-fonts -y && \
21
21
cp /usr/include/lapacke/lapacke*.h /usr/include/ && \
22
22
curl https://raw.githubusercontent.com/xianyi/OpenBLAS/v0.3.3/cblas.h -o /usr/include/cblas.h && \
23
23
# libpng will be built from source
24
- yum remove libpng zlib-devel bzip2-devel -y
25
-
26
- RUN mkdir ~/zlib_sources && \
27
- cd ~/zlib_sources && \
28
- curl -O -L https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz && \
29
- tar -xf zlib-${ZLIB_VERSION}.tar.gz && \
30
- cd zlib-${ZLIB_VERSION} && \
31
- ./configure --prefix=/usr/local && \
32
- make && \
33
- make install && \
34
- cd .. && \
35
- rm -rf ~/zlib_sources
24
+ yum remove libpng -y
36
25
37
26
RUN mkdir ~/libpng_sources && \
38
27
cd ~/libpng_sources && \
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ function bdist_wheel_cmd {
23
23
TOOLS_PATH=/opt/_internal/pipx/venvs/auditwheel
24
24
/opt/python/cp39-cp39/bin/python -m venv $TOOLS_PATH
25
25
source $TOOLS_PATH /bin/activate
26
- python patch_auditwheel_whitelist.py
27
26
deactivate
28
27
fi
29
28
if [ -n " $USE_CCACHE " -a -z " $BREW_BOOTSTRAP_MODE " ]; then ccache -s; fi
You can’t perform that action at this time.
0 commit comments