mominah commited on
Commit
a3fdff9
·
verified ·
1 Parent(s): 2cf4d8c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -9,6 +9,10 @@ RUN apt-get update && apt-get install -y \
9
  curl \
10
  ca-certificates
11
 
 
 
 
 
12
  # Create a new user to run the app
13
  RUN useradd -m -u 1000 user
14
  USER user
 
9
  curl \
10
  ca-certificates
11
 
12
+ # Install system dependencies (poppler-utils is required by pdf2image).
13
+ RUN apt-get update && apt-get install -y poppler-utils && rm -rf /var/lib/apt/lists/*
14
+
15
+
16
  # Create a new user to run the app
17
  RUN useradd -m -u 1000 user
18
  USER user