🎨 s/pip3/pip/g

pull/38/head
Gerber, Mike 4 years ago
parent 1f12b0b1e8
commit c1163405c4

@ -1,6 +1,6 @@
FROM ubuntu:18.04
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG OCRD_VERSION_MINIMUM="2.18.1"
ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
ENV PIP_DEFAULT_TIMEOUT=120
@ -42,7 +42,7 @@ RUN ${PIP_INSTALL} \
# Check pip dependencies
RUN pip3 check
RUN pip check
WORKDIR /data

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG DINGLEHOPPER_COMMIT="6e47acd"
@ -11,7 +11,7 @@ RUN ${PIP_INSTALL} \
# Check pip dependencies
RUN pip3 check
RUN pip check
# Default command

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
# Build pip installable stuff
@ -19,7 +19,7 @@ COPY data/calamari-models/GT4HistOCR/2019-07-22T15_49+0200 /var/lib/calamari-mod
# Check pip dependencies
RUN pip3 check
RUN pip check
# Default command

@ -2,8 +2,8 @@ FROM my_ocrd_workflow-core
# XXX https://github.com/OCR-D/core/issues/642
#ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip3 install --no-cache-dir"
#ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir"
# Build pip installable stuff
@ -19,7 +19,7 @@ COPY data/calamari-models/GT4HistOCR/2019-12-11T11_10+0100 /var/lib/calamari-mod
# Check pip dependencies
# XXX https://github.com/OCR-D/core/issues/642
#RUN pip3 check
#RUN pip check
# Default command

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG OCRD_CIS_VERSION="0.1.5"
@ -11,7 +11,7 @@ RUN ${PIP_INSTALL} \
# Check pip dependencies
RUN pip3 check
RUN pip check
# Default command

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG OCRD_FILEFORMAT_VERSION="0.1.1"

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG OCRD_OLENA_VERSION="1.2.0"
@ -27,7 +27,7 @@ RUN curl -sSL --retry 3 -o ocrd_olena.tar.gz https://github.com/OCR-D/ocrd_olena
# Check pip dependencies
RUN pip3 check
RUN pip check
# Default command

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG TESSDATA_BEST_VERSION="4.0.0"
ENV TESSDATA_PREFIX /usr/local/share/tessdata
@ -28,7 +28,7 @@ RUN ${PIP_INSTALL} \
# Check pip dependencies
RUN pip3 check
RUN pip check
# Default command

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG SBB_BINARIZATION_COMMIT="4d145cc"
@ -15,7 +15,7 @@ COPY data/sbb_binarization /var/lib/sbb_binarization
# Check pip dependencies
RUN pip3 check
RUN pip check
# Default command

@ -1,6 +1,6 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
ARG SBB_TEXTLINE_DETECTOR_COMMIT="247d5f9"
@ -16,7 +16,7 @@ COPY data/textline_detection /var/lib/textline_detection
# Check pip dependencies
RUN pip3 check
RUN pip check
# Default command

@ -85,7 +85,7 @@ main() {
if [ "$LOG_LEVEL" = "DEBUG" -o "$LOG_LEVEL" = "TRACE" ]; then
pip3 list || true
pip list || true
fi
main

Loading…
Cancel
Save