Dockerfile 196 B

123456789101112131415
  1. FROM ubuntu:22.04
  2. RUN apt-get update && apt-get install -y \
  3. python3 \
  4. python3-pip \
  5. tesseract-ocr \
  6. poppler-utils
  7. RUN pip install ocrmypdf
  8. WORKDIR /app
  9. COPY . .
  10. CMD ocrmypdf