From bac9b76ade15784b9e9e4b3224843bc878c32bd1 Mon Sep 17 00:00:00 2001 From: Yan <yas108@ucsd.edu> Date: Sat, 31 Aug 2019 08:41:40 -0700 Subject: [PATCH] Optimize Dockerfile (#1306) --- docker/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 75ce054..7d4ae30 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,10 +4,12 @@ ARG CUDNN="7.5" FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel -RUN apt-get update && apt-get install -y libglib2.0-0 libsm6 libxrender-dev libxext6 +RUN apt-get update && apt-get install -y libglib2.0-0 libsm6 libxrender-dev libxext6 \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* # Install mmdetection -RUN conda install cython -y +RUN conda install cython -y && conda clean --all RUN git clone https://github.com/open-mmlab/mmdetection.git /mmdetection WORKDIR /mmdetection -RUN pip install -e . +RUN pip install --no-cache-dir -e . -- GitLab