Skip to content

Commit

Permalink
also build PyQt
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Apr 2, 2018
1 parent be62531 commit c29a282
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .docker/qgis3-build-deps.dockerfile
Expand Up @@ -87,7 +87,6 @@ RUN apt-get update \
mock \
future \
termcolor \
pyqt5 \
&& apt-get autoremove -y python3-pip python2.7 \
&& apt-get clean

Expand All @@ -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
Expand Down

0 comments on commit c29a282

Please sign in to comment.