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.
This commit is contained in:
Chuseuiti 2019-01-23 16:16:38 -05:00 committed by GitHub
parent 3b72181b3d
commit 999f7756c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ LABEL maintainer "devs@bigchaindb.com"
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y vim \ && apt-get install -y vim \
&& pip install -U pip \ && pip install -U pip==18.1 \
&& pip install pynacl \ && pip install pynacl \
&& apt-get autoremove \ && apt-get autoremove \
&& apt-get clean && apt-get clean
@ -33,4 +33,4 @@ RUN mkdir -p /usr/src/app
COPY . /usr/src/app/ COPY . /usr/src/app/
WORKDIR /usr/src/app WORKDIR /usr/src/app
RUN pip install --no-cache-dir --process-dependency-links -e .[dev] RUN pip install --no-cache-dir --process-dependency-links -e .[dev]
RUN bigchaindb -y configure RUN bigchaindb -y configure