Compare commits

..

2 Commits

Author SHA1 Message Date
Patrick Jentsch
104598039e Dockerfile codestyle 2021-02-24 15:28:04 +01:00
Patrick Jentsch
da29659a9b Add back missing author mention 2021-02-24 15:17:42 +01:00
2 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,7 @@
FROM debian:buster-slim
LABEL authors="Patrick Jentsch <p.jentsch@uni-bielefeld.de>"
LABEL authors="Patrick Jentsch <p.jentsch@uni-bielefeld.de>, Stephan Porada <porada@posteo.de>"
ENV LANG=C.UTF-8
@ -91,12 +91,12 @@ RUN apt-get install --no-install-recommends --yes \
&& pip install natsort
RUN rm -r /var/lib/apt/lists/*
## Install Pipeline ##
COPY hocrtotei ocr /usr/local/bin/
RUN rm -r /var/lib/apt/lists/*
ENTRYPOINT ["ocr"]
CMD ["--help"]

3
ocr
View File

@ -3,7 +3,8 @@
"""An OCR pipeline for PDF file processing."""
__author__ = 'Patrick Jentsch <p.jentsch@uni-bielefeld.de>'
__author__ = 'Patrick Jentsch <p.jentsch@uni-bielefeld.de>,' \
'Stephan Porada <porada@posteo.de>'
__version__ = '1.0.0'
from argparse import ArgumentParser