Skip to content

Commit cb1a042

Browse files
committed
[docker] update sip to 4.19.7
also bump cmake to 3.10.2
1 parent f7220c8 commit cb1a042

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.docker/Dockerfile

+8-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ RUN apt-get update \
1212
ca-certificates \
1313
ccache \
1414
clang \
15-
# cmake \
1615
curl \
1716
dh-python \
1817
flex \
@@ -89,9 +88,14 @@ RUN apt-get update \
8988
termcolor \
9089
&& apt-get autoremove -y python3-pip python2.7 \
9190
&& apt-get clean \
92-
&& curl -s -S -O https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.tar.gz \
93-
&& tar --strip-components=1 -zx -f cmake-3.10.1-Linux-x86_64.tar.gz -C /usr/local \
94-
&& rm cmake-3.10.1-Linux-x86_64.tar.gz
91+
&& curl -s -S -O https://cmake.org/files/v3.10/cmake-3.10.2-Linux-x86_64.tar.gz \
92+
&& tar --strip-components=1 -zx -f cmake-3.10.2-Linux-x86_64.tar.gz -C /usr/local \
93+
&& rm cmake-3.10.2-Linux-x86_64.tar.gz \
94+
&& mkdir /root/sip \
95+
&& curl -s -S -O -L https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.7/sip-4.19.7.tar.gz \
96+
&& tar --strip-components=1 -zx -f sip-4.19.7.tar.gz -C /root/sip \
97+
&& python3 /root/sip/configure.py && make && make install \
98+
&& rm sip-4.19.7.tar.gz
9599

96100
RUN echo "alias python=python3" >> ~/.bash_aliases
97101

0 commit comments

Comments
 (0)