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 5b7f956

Browse files
committedApr 5, 2018
try in a virtual env
1 parent e52b231 commit 5b7f956

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎.docker/qgis3-build-deps.dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,18 @@ RUN apt-get update \
9494
mock \
9595
future \
9696
termcolor \
97-
&& apt-get autoremove -y python3-pip python2.7 sip-dev \
97+
virtualenv \
98+
&& apt-get autoremove -y python3-pip python2.7 \
9899
&& apt-get clean
99100

100101
RUN bash -c "echo $(sip -V)"
101102
RUN bash -c "echo $(which sip)"
102103

104+
WORKDIR /root
105+
RUN mkdir /root/virtualenvironment \
106+
&& virtualenv /root/virtualenvironment/sip419
107+
WORKDIR /root/virtualenvironment/sip419/bin
108+
RUN source activate
103109
WORKDIR /root
104110
RUN curl -s -S -O https://www.riverbankcomputing.com/hg/sip/archive/tip.tar.gz \
105111
&& tar xzf tip.tar.gz \

0 commit comments

Comments
 (0)
Please sign in to comment.