From 1ff68e9df45745edd0ae78fa2cfb5e1dbdc7b288 Mon Sep 17 00:00:00 2001 From: Erkin Matkaziev Date: Tue, 8 Jan 2019 11:30:08 +0900 Subject: [PATCH] fix typo in comment and upgrade pip --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index de68e6f..58dd732 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,10 +7,11 @@ ENV Caffe2_DIR /usr/local/caffe2_build ENV PYTHONPATH /usr/local/caffe2_build:${PYTHONPATH} ENV LD_LIBRARY_PATH /usr/local/caffe2_build/lib:${LD_LIBRARY_PATH} -# Clone the Detectron repository +# Clone the Densepose repository RUN git clone https://github.com/facebookresearch/densepose /densepose # Install Python dependencies +RUN pip install --upgrade pip RUN pip install -r /densepose/requirements.txt # Install the COCO API