tesseract deu but restored else
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-12-30 11:27:53 +01:00
parent 6a67e34f10
commit eed753a383

View File

@@ -1,10 +1,10 @@
# vim:set ft=dockerfile: # vim:set ft=dockerfile:
#### ####
# base_image - Bare bones image with the base packages needed to run Mayan EDMS # BASE_IMAGE - Bare bones image with the base packages needed to run Mayan EDMS
#### ####
FROM debian:10.0-slim as base_image FROM debian:10.0-slim as BASE_IMAGE
LABEL maintainer="Roberto Rosario roberto.rosario@mayan-edms.com" LABEL maintainer="Roberto Rosario roberto.rosario@mayan-edms.com"
@@ -57,16 +57,15 @@ apt-get update \
&& if [ "$(uname -m)" = "armv7l" ]; then \ && if [ "$(uname -m)" = "armv7l" ]; then \
ln -s /usr/lib/arm-linux-gnueabihf/libz.so /usr/lib/ \ ln -s /usr/lib/arm-linux-gnueabihf/libz.so /usr/lib/ \
&& ln -s /usr/lib/arm-linux-gnueabihf/libjpeg.so /usr/lib/ \ && ln -s /usr/lib/arm-linux-gnueabihf/libjpeg.so /usr/lib/ \
; fi \ ; fi
&& rm -rf /var/lib/apt/lists/*
#### ####
# builder_image - This image builds the Python package and is discarded afterwards # BUILDER_IMAGE - This image builds the Python package and is discarded afterwards
# only the build artifact is carried over to the next image. # only the build artifact is carried over to the next image.
#### ####
# Reuse image # Reuse image
FROM base_image as builder_image FROM BASE_IMAGE as BUILDER_IMAGE
# Python libraries caching # Python libraries caching
ARG PIP_INDEX_URL ARG PIP_INDEX_URL
@@ -137,12 +136,12 @@ RUN set -a \
COPY --chown=mayan:mayan requirements/testing-base.txt "${PROJECT_INSTALL_DIR}" COPY --chown=mayan:mayan requirements/testing-base.txt "${PROJECT_INSTALL_DIR}"
#### ####
# Final image - base_image + builder_image artifact (Mayan install directory) # Final image - BASE_IMAGE + BUILDER_IMAGE artifact (Mayan install directory)
#### ####
FROM base_image FROM BASE_IMAGE
COPY --from=builder_image --chown=mayan:mayan "${PROJECT_INSTALL_DIR}/" "${PROJECT_INSTALL_DIR}/" COPY --from=BUILDER_IMAGE --chown=mayan:mayan "${PROJECT_INSTALL_DIR}/" "${PROJECT_INSTALL_DIR}/"
USER root USER root