Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c29a282

Browse files
committedApr 2, 2018
also build PyQt
1 parent be62531 commit c29a282

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.docker/qgis3-build-deps.dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ RUN apt-get update \
8787
mock \
8888
future \
8989
termcolor \
90-
pyqt5 \
9190
&& apt-get autoremove -y python3-pip python2.7 \
9291
&& apt-get clean
9392

@@ -99,6 +98,12 @@ RUN curl -s -S -O https://www.riverbankcomputing.com/hg/sip/archive/tip.tar.gz \
9998
WORKDIR /root/sip419
10099
RUN python3 build.py prepare && python3 configure.py && make && make install
101100

101+
WORKDIR /root
102+
RUN curl -s -S -O https://svwh.dl.sourceforge.net/project/pyqt/PyQt5/PyQt-5.9.2/PyQt5_gpl-5.9.2.tar.gz \
103+
&& tar xzf PyQt5_gpl-5.9.2.tar.gz
104+
WORKDIR /root/PyQt5_gpl-5.9.2
105+
RUN python3 configure.py --qsci-api --enable svg sql && make && make install
106+
102107
RUN echo "alias python=python3" >> ~/.bash_aliases
103108

104109
ENV CC=/usr/lib/ccache/clang

0 commit comments

Comments
 (0)
Please sign in to comment.