GoodML commited on
Commit
c4aade3
·
verified ·
1 Parent(s): 20f80cf

First dockerfile with Tesseract-OCR

Browse files
Files changed (1) hide show
  1. Dockerfile +25 -0
Dockerfile ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use Python 3.9 as the base image
2
+ FROM python:3.9
3
+
4
+ # Install Tesseract-OCR and language data
5
+ RUN apt-get update && \
6
+ apt-get install -y tesseract-ocr tesseract-ocr-eng && \
7
+ rm -rf /var/lib/apt/lists/*
8
+
9
+ # Create a user and set up the environment
10
+ RUN useradd -m -u 1000 user
11
+ USER user
12
+ ENV PATH="/home/user/.local/bin:$PATH"
13
+
14
+ # Set the working directory
15
+ WORKDIR /app
16
+
17
+ # Copy and install Python dependencies
18
+ COPY --chown=user ./requirements.txt requirements.txt
19
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
20
+
21
+ # Copy the application code
22
+ COPY --chown=user . /app
23
+
24
+ # Command to run the application
25
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]