Trying to force pip to use /usr instead of /usr/local

This commit is contained in:
Salvador E. Tropea 2021-10-06 16:36:10 -03:00
parent 54d8c6c77f
commit fb16e06152
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \
apt -y install --no-install-recommends ./*.deb && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \
unzip pp.zip && \
cd KiBot-master ; pip3 install . ; cd .. && \
cd KiBot-master ; pip3 install --prefix /usr . ; cd .. && \
rm -rf KiBot-master pp.zip && \
apt-get -y remove curl wget python3-pip unzip && \
apt-get -y autoremove && \