From 257eace7e190676ada72ceea3606bc43e1cfcf4b Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 6 Oct 2021 17:04:35 -0300 Subject: [PATCH] Changed the way I call pip3 - Passing the directory, not changing - To catch pip errors. --- tools/dev_image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dev_image/Dockerfile b/tools/dev_image/Dockerfile index f53b0ce7..49eb16c4 100644 --- a/tools/dev_image/Dockerfile +++ b/tools/dev_image/Dockerfile @@ -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 --prefix /usr . ; cd .. && \ + pip3 install KiBot-master/ && \ rm -rf KiBot-master pp.zip && \ apt-get -y remove curl wget python3-pip unzip && \ apt-get -y autoremove && \