Jakecole1 commited on
Commit
c4cd83a
·
verified ·
1 Parent(s): 51720ee

Create DockerFile

Browse files
Files changed (1) hide show
  1. DockerFile +17 -0
DockerFile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use Python base image
2
+ FROM python:3.10
3
+
4
+ # Install poppler-utils
5
+ RUN apt-get update && apt-get install -y poppler-utils
6
+
7
+ # Set working directory
8
+ WORKDIR /app
9
+
10
+ # Copy app files
11
+ COPY . /app
12
+
13
+ # Install Python dependencies
14
+ RUN pip install -r requirements.txt
15
+
16
+ # Set default command
17
+ CMD ["python", "app.py"]