File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff 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 \
9998WORKDIR /root/sip419
10099RUN 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+
102107RUN echo "alias python=python3" >> ~/.bash_aliases
103108
104109ENV CC=/usr/lib/ccache/clang
You can’t perform that action at this time.
0 commit comments