pythonprincess commited on
Commit
15d7d18
·
verified ·
1 Parent(s): 9423397

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use a minimal Python image
2
+ FROM python:3.10-slim
3
+
4
+ # Set working directory
5
+ WORKDIR /app
6
+
7
+ # Copy all files
8
+ COPY . .
9
+
10
+ # Install Python dependencies
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ # Expose port (Hugging Face expects 7860 by default for Docker Spaces)
14
+ EXPOSE 7860
15
+
16
+ # Start the FastAPI app using Uvicorn
17
+ CMD ["uvicorn", "api_service:app", "--host", "0.0.0.0", "--port", "7860"]