codelion commited on
Commit
73f9d3e
·
verified ·
1 Parent(s): 8ba38eb

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -0
Dockerfile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use official Python runtime as a parent image
2
+ FROM python:3.11-slim
3
+
4
+ # Set working directory
5
+ WORKDIR /app
6
+
7
+ # Copy requirements and install dependencies
8
+ COPY requirements.txt .
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
+
11
+ # Copy the app code
12
+ COPY app.py .
13
+
14
+ # Expose the port HF Spaces expects
15
+ EXPOSE 7860
16
+
17
+ # Set environment variable for Flask to run on the correct port
18
+ ENV PORT=7860
19
+
20
+ # Run the Flask app
21
+ CMD ["python", "app.py"]