From 458fc7897f421524e134dd857751013d88d2f6aa Mon Sep 17 00:00:00 2001 From: Amrit Krishnan Date: Sat, 19 Jun 2021 11:31:19 -0400 Subject: [PATCH] Add fixes to Dockerfile (#607) --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8e090f7..7481b3a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y git ninja-build libglib2.0-0 libsm6 lib RUN conda clean --all RUN pip install mmcv-full==latest+torch1.6.0+cu101 -f https://download.openmmlab.com/mmcv/dist/index.html -RUN git clone https://github.com/open-mmlab/mmsegmenation.git /mmsegmentation +RUN git clone https://github.com/open-mmlab/mmsegmentation.git /mmsegmentation WORKDIR /mmsegmentation -RUN pip install -r requirements/build.txt +RUN pip install -r requirements.txt RUN pip install --no-cache-dir -e .