Sensei13k commited on
Commit
300298d
1 Parent(s): acb6e83

Update dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +3 -6
dockerfile CHANGED
@@ -1,10 +1,7 @@
1
- FROM python:3.9
2
 
3
- # Install system dependencies
4
- RUN apt-get update && apt-get install -y \
5
- tesseract-ocr \
6
- libtesseract-dev \
7
- && rm -rf /var/lib/apt/lists/*
8
 
9
  # Copy your app files
10
  COPY . /app
 
1
+ FROM python:3.10
2
 
3
+ # Install Tesseract OCR
4
+ RUN apt-get update && apt-get install -y tesseract-ocr libtesseract-dev
 
 
 
5
 
6
  # Copy your app files
7
  COPY . /app