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 \
87
87
mock \
88
88
future \
89
89
termcolor \
90
- pyqt5 \
91
90
&& apt-get autoremove -y python3-pip python2.7 \
92
91
&& apt-get clean
93
92
@@ -99,6 +98,12 @@ RUN curl -s -S -O https://www.riverbankcomputing.com/hg/sip/archive/tip.tar.gz \
99
98
WORKDIR /root/sip419
100
99
RUN python3 build.py prepare && python3 configure.py && make && make install
101
100
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
+
102
107
RUN echo "alias python=python3" >> ~/.bash_aliases
103
108
104
109
ENV CC=/usr/lib/ccache/clang
You can’t perform that action at this time.
0 commit comments