Skip to content

Commit

Permalink
⚙️ Use Docker build ARGs for build args
Browse files Browse the repository at this point in the history
  • Loading branch information
mikegerber committed Sep 25, 2020
1 parent 311e3ea commit cf43f9a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-dinglehopper
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM my_ocrd_workflow-core

ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ENV DINGLEHOPPER_COMMIT 2b98f69
ARG DINGLEHOPPER_COMMIT="2b98f69"


# Build pip installable stuff
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-ocrd_olena
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM my_ocrd_workflow-core

ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ENV OCRD_OLENA_VERSION 1.2.0
ARG OCRD_OLENA_VERSION="1.2.0"


# Build ocrd_olena
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-ocrd_tesserocr
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM my_ocrd_workflow-core

ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ENV TESSDATA_BEST_VERSION 4.0.0
ARG TESSDATA_BEST_VERSION="4.0.0"
ENV TESSDATA_PREFIX /usr/local/share/tessdata


Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-sbb_textline_detector
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM my_ocrd_workflow-core

ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ENV SBB_TEXTLINE_DETECTOR_COMMIT 0f09f4a
ARG SBB_TEXTLINE_DETECTOR_COMMIT="0f09f4a"


# Build pip installable stuff
Expand Down

0 comments on commit cf43f9a

Please sign in to comment.