diff --git a/.docker/main.docker b/.docker/main.docker index d4ae7981..d46de597 100644 --- a/.docker/main.docker +++ b/.docker/main.docker @@ -51,4 +51,4 @@ WORKDIR /home/docker # Must use array form of ENTRYPOINT # Non-array form does not append other arguments, because that is "intuitive" -ENTRYPOINT ["/application/docker-wrapper.sh"] +ENTRYPOINT ["/application/.docker/docker-wrapper.sh"] diff --git a/.docker/polyglot.docker b/.docker/polyglot.docker index f5accb4f..1180a5ac 100644 --- a/.docker/polyglot.docker +++ b/.docker/polyglot.docker @@ -16,4 +16,4 @@ USER docker # Must use array form of ENTRYPOINT # Non-array form does not append other arguments, because that is "intuitive" -ENTRYPOINT ["/application/docker-wrapper.sh"] \ No newline at end of file +ENTRYPOINT ["/application/.docker/docker-wrapper.sh"] \ No newline at end of file diff --git a/.docker/tess4.docker b/.docker/tess4.docker index 68280554..91215fe7 100644 --- a/.docker/tess4.docker +++ b/.docker/tess4.docker @@ -61,4 +61,4 @@ WORKDIR /home/docker # Must use array form of ENTRYPOINT # Non-array form does not append other arguments, because that is "intuitive" -ENTRYPOINT ["/application/docker-wrapper.sh"] +ENTRYPOINT ["/application/.docker/docker-wrapper.sh"] diff --git a/MANIFEST.in b/MANIFEST.in index 8f3cdf7f..0aed7dd3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,9 +7,11 @@ include dev_requirements.txt include .git_archival.txt # docker -include Dockerfile -include Dockerfile.polyglot include .dockerignore +include .docker/main.docker +include .docker/polyglot.docker +include .docker/tess4.docker +include .docker/docker-wrapper.sh # tests include pytest.ini @@ -43,6 +45,6 @@ exclude tasks.py recursive-include ocrmypdf *.py exclude ocrmypdf/lib/_leptonica.py include OCRmyPDF.sh -include docker-wrapper.sh +