Skip to content

Commit

Permalink
add pdftotext to docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
tfeldmann committed Feb 18, 2024
1 parent 1b146cc commit c9a95db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ RUN poetry install --only=main --no-interaction

FROM base as final

RUN apt update && apt install -y exiftool && rm -rf /var/lib/apt/lists/*
RUN apt update && \
apt install -y exiftool poppler-utils && \
rm -rf /var/lib/apt/lists/*
ENV ORGANIZE_CONFIG=/config/config.yml \
ORGANIZE_EXIFTOOL_PATH=exiftool
RUN mkdir /config && touch ./README.md
Expand Down

0 comments on commit c9a95db

Please sign in to comment.