trish06 commited on
Commit
0d636f8
·
verified ·
1 Parent(s): 395e96e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -9,6 +9,11 @@ RUN npm run build
9
  FROM python:3.11-slim
10
  WORKDIR /app
11
 
 
 
 
 
 
12
  COPY backend/requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
 
9
  FROM python:3.11-slim
10
  WORKDIR /app
11
 
12
+ RUN apt-get update && apt-get install -y \
13
+ tesseract-ocr \
14
+ poppler-utils \
15
+ && rm -rf /var/lib/apt/lists/*
16
+
17
  COPY backend/requirements.txt .
18
  RUN pip install --no-cache-dir -r requirements.txt
19