From 2a14d21925f00ed3aa91befc56c5e467e4f78071 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Fri, 7 Feb 2020 12:21:43 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Replace=20pipdeptree=20call=20wi?= =?UTF-8?q?th=20"pip3=20check"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6825e91..330edc9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,15 +75,13 @@ COPY data/textline_detection /var/lib/textline_detection COPY requirements.txt /tmp RUN pip3 install --no-cache-dir --upgrade pip && \ - pip3 install --no-cache-dir -r /tmp/requirements.txt + pip3 install --no-cache-dir -r /tmp/requirements.txt && \ + pip3 check COPY my_ocrd_workflow /usr/bin COPY xsd/* /usr/share/xml/ -RUN pip3 install --no-cache-dir pipdeptree && \ - pipdeptree -w fail - # XXX Work around concurrency problems(?) RUN sed -i 's#num_cores *= *cpu_count()#num_cores = 1#' /usr/local/lib/python3.6/dist-packages/qurator/sbb_textline_detector/main.py