From 99676f7a98db0b3e69dc42122de2f972f966f210 Mon Sep 17 00:00:00 2001 From: aventau Date: Mon, 17 Aug 2020 10:03:02 +0200 Subject: [PATCH] Fix for #9: docker build error (#11) ModuleNotFoundError: No module named 'skbuild' --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 22d2d7e8..928ac1b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ RUN apt-get update -y RUN apt-get install python3 python3-pip unzip wget -y COPY . /app WORKDIR app/ +RUN pip3 install --upgrade pip RUN pip3 install -r requirements.txt RUN pip3 install jupyterlab notebook -RUN pip3 install git+https://github.com/mihaidusmanu/pycolmap \ No newline at end of file +RUN pip3 install git+https://github.com/mihaidusmanu/pycolmap