From c29a282a7b7a650e5aaab46ca35f74af7257372f Mon Sep 17 00:00:00 2001 From: Denis Rouzaud Date: Mon, 2 Apr 2018 09:35:23 -0400 Subject: [PATCH] also build PyQt --- .docker/qgis3-build-deps.dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.docker/qgis3-build-deps.dockerfile b/.docker/qgis3-build-deps.dockerfile index 1fac2afa917e..815f23b4451c 100644 --- a/.docker/qgis3-build-deps.dockerfile +++ b/.docker/qgis3-build-deps.dockerfile @@ -87,7 +87,6 @@ RUN apt-get update \ mock \ future \ termcolor \ - pyqt5 \ && apt-get autoremove -y python3-pip python2.7 \ && apt-get clean @@ -99,6 +98,12 @@ RUN curl -s -S -O https://www.riverbankcomputing.com/hg/sip/archive/tip.tar.gz \ WORKDIR /root/sip419 RUN python3 build.py prepare && python3 configure.py && make && make install +WORKDIR /root +RUN curl -s -S -O https://svwh.dl.sourceforge.net/project/pyqt/PyQt5/PyQt-5.9.2/PyQt5_gpl-5.9.2.tar.gz \ + && tar xzf PyQt5_gpl-5.9.2.tar.gz +WORKDIR /root/PyQt5_gpl-5.9.2 +RUN python3 configure.py --qsci-api --enable svg sql && make && make install + RUN echo "alias python=python3" >> ~/.bash_aliases ENV CC=/usr/lib/ccache/clang