1
- # Version: 20230117
1
+ # Version: 20230124
2
2
# Image name: quay.io/opencv-ci/opencv-python-manylinux2014-aarch64
3
3
4
4
FROM quay.io/pypa/manylinux2014_aarch64:latest
@@ -9,13 +9,13 @@ ARG FREETYPE_VERSION=2.12.1
9
9
ARG LIBPNG_VERSION=1.6.37
10
10
ARG NASM_VERSION=2.15.04
11
11
ARG OPENSSL_VERSION=1_1_1s
12
- ARG QT_VERSION=5.15.0
12
+ ARG QT_VERSION=5.15.8
13
13
ARG YASM_VERSION=1.3.0
14
14
15
15
ENV LD_LIBRARY_PATH /usr/local/lib:$LD_LIBRARY_PATH
16
16
17
17
# epel-release need for aarch64 to get openblas packages
18
- RUN yum install zlib-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 zlib-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 wayland-devel libwayland-egl -y && \
19
19
yum install openblas-devel dejavu-sans-fonts -y && \
20
20
cp /usr/include/lapacke/lapacke*.h /usr/include/ && \
21
21
curl https://raw.githubusercontent.com/xianyi/OpenBLAS/v0.3.3/cblas.h -o /usr/include/cblas.h && \
@@ -44,13 +44,12 @@ RUN mkdir ~/freetype_sources && \
44
44
cd .. && \
45
45
rm -rf ~/freetype_sources
46
46
47
- RUN curl -O -L https://download.qt.io/official_releases /qt/5.15/${QT_VERSION}/single/qt-everywhere-src-${QT_VERSION}.tar.xz && \
48
- tar -xf qt-everywhere-src-${QT_VERSION}.tar.xz && \
47
+ RUN curl -O -L https://download.qt.io/archive /qt/5.15/${QT_VERSION}/single/qt-everywhere-opensource -src-${QT_VERSION}.tar.xz && \
48
+ tar -xf qt-everywhere-opensource- src-${QT_VERSION}.tar.xz && \
49
49
cd qt-everywhere-src-${QT_VERSION} && \
50
50
export MAKEFLAGS=-j$(nproc) && \
51
- ./configure -prefix /opt/Qt${QT_VERSION} -release -opensource -confirm-license -qtnamespace QtOpenCVPython -xcb -xcb-xlib -bundled-xcb-xinput -no-openssl -no-dbus -skip qt3d -skip qtactiveqt -skip qtcanvas3d -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtgamepad -skip qtgraphicaleffects -skip qtimageformats -skip qtlocation -skip qtmultimedia -skip qtpurchasing -skip qtqa -skip qtremoteobjects -skip qtrepotools -skip qtscript -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtserialport -skip qtspeech -skip qttranslations -skip qtwayland -skip qtwebchannel -skip qtwebengine -skip qtwebsockets -skip qtwebview -skip xmlpatterns -skip declarative -make libs && \
52
- make && \
53
- make install && \
51
+ ./configure -prefix /opt/Qt${QT_VERSION} -release -opensource -confirm-license -qtnamespace QtOpenCVPython -xcb -xcb-xlib -bundled-xcb-xinput -no-openssl -no-dbus -skip qt3d -skip qtactiveqt -skip qtcanvas3d -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtgamepad -skip qtgraphicaleffects -skip qtimageformats -skip qtlocation -skip qtmultimedia -skip qtpurchasing -skip qtqa -skip qtremoteobjects -skip qtrepotools -skip qtscript -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtserialport -skip qtspeech -skip qttranslations -skip qtwebchannel -skip qtwebengine -skip qtwebsockets -skip qtwebview -skip xmlpatterns -skip declarative -make libs && \
52
+ make && make install && \
54
53
cd .. && \
55
54
rm -rf qt-everywhere*
56
55
@@ -139,3 +138,4 @@ RUN git config --global --add safe.directory /io
139
138
ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/ffmpeg_build/lib/pkgconfig
140
139
ENV LDFLAGS -L/ffmpeg_build/lib
141
140
ENV PATH "$HOME/bin:$PATH"
141
+ ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/Qt${QT_VERSION}/lib
0 commit comments