mknolan commited on
Commit
9a5e9b8
·
verified ·
1 Parent(s): 196f83b

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +19 -0
Dockerfile ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ WORKDIR /app
4
+
5
+ # Install poppler-utils needed for pdf2image
6
+ RUN apt-get update && apt-get install -y poppler-utils
7
+
8
+ # Install Python dependencies
9
+ COPY requirements.txt .
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+ # Copy application files
13
+ COPY . .
14
+
15
+ # Set environment variables
16
+ ENV PYTHONUNBUFFERED=1
17
+
18
+ # Run the application
19
+ CMD ["python", "app.py"]