errantanomie commited on
Commit
cf30fa1
·
verified ·
1 Parent(s): dac3ce7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -3,6 +3,9 @@ FROM python:3.10
3
  # Install Poppler
4
  RUN apt-get update && apt-get install -y poppler-utils
5
 
 
 
 
6
  # Ensure Poppler is in PATH
7
  ENV PATH="/usr/bin:${PATH}"
8
 
 
3
  # Install Poppler
4
  RUN apt-get update && apt-get install -y poppler-utils
5
 
6
+ # Verify Poppler installation
7
+ RUN pdfinfo -version
8
+
9
  # Ensure Poppler is in PATH
10
  ENV PATH="/usr/bin:${PATH}"
11