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 b1f8f6d

Browse files
committedMar 28, 2018
[docker] use SIP maintenance version 4.19.9
in order to get proper signal Docstring for PyQGIS doc
1 parent 721095e commit b1f8f6d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎.docker/qgis3-build-deps.dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ RUN apt-get update \
6666
python3-pyqt5.qsci \
6767
python3-pyqt5.qtsql \
6868
python3-pyqt5.qtsvg \
69-
python3-sip \
70-
python3-sip-dev \
7169
python3-termcolor \
7270
python3-yaml \
7371
qt3d5-dev \
@@ -99,6 +97,12 @@ RUN apt-get update \
9997
&& apt-get autoremove -y python3-pip python2.7 \
10098
&& apt-get clean
10199

100+
WORKDIR /root
101+
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+
102106
RUN echo "alias python=python3" >> ~/.bash_aliases
103107

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

0 commit comments

Comments
 (0)
Please sign in to comment.