From 999f7756c02e97a0f4df162d3823d0aa514a70f3 Mon Sep 17 00:00:00 2001 From: Chuseuiti Date: Wed, 23 Jan 2019 16:16:38 -0500 Subject: [PATCH] pip 19.1 has deprecated --process-dependency-links To fix the deprecation problem, it was needed to fix the version on pip. I would recommend to fix the other versions not to run into this possible bugs. --- Dockerfile-dev | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-dev b/Dockerfile-dev index 0c55979c..95fce628 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -4,7 +4,7 @@ LABEL maintainer "devs@bigchaindb.com" RUN apt-get update \ && apt-get install -y vim \ - && pip install -U pip \ + && pip install -U pip==18.1 \ && pip install pynacl \ && apt-get autoremove \ && apt-get clean @@ -33,4 +33,4 @@ RUN mkdir -p /usr/src/app COPY . /usr/src/app/ WORKDIR /usr/src/app RUN pip install --no-cache-dir --process-dependency-links -e .[dev] -RUN bigchaindb -y configure \ No newline at end of file +RUN bigchaindb -y configure