We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 721095e commit b1f8f6dCopy full SHA for b1f8f6d
.docker/qgis3-build-deps.dockerfile
@@ -66,8 +66,6 @@ RUN apt-get update \
66
python3-pyqt5.qsci \
67
python3-pyqt5.qtsql \
68
python3-pyqt5.qtsvg \
69
- python3-sip \
70
- python3-sip-dev \
71
python3-termcolor \
72
python3-yaml \
73
qt3d5-dev \
@@ -99,6 +97,12 @@ RUN apt-get update \
99
97
&& apt-get autoremove -y python3-pip python2.7 \
100
98
&& apt-get clean
101
+WORKDIR /root
+RUN wget --no-verbose https://www.riverbankcomputing.com/static/Downloads/sip/sip-4.19.9.dev1803171438.tar.gz \
102
+ && tar xzf sip-4.19.9.dev1803171438.tar.gz
103
+WORKDIR /root/sip-4.19.9.dev1803171438
104
+RUN python3 configure.py && make && make install
105
+
106
RUN echo "alias python=python3" >> ~/.bash_aliases
107
108
ENV CC=/usr/lib/ccache/clang
0 commit comments