SouravNath commited on
Commit
79cdd38
·
1 Parent(s): 84fad73

feat: add Dockerfile for HuggingFace Spaces deployment

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -0
Dockerfile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Install system dependencies
6
+ RUN apt-get update && apt-get install -y --no-install-recommends \
7
+ git curl build-essential \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ # Install Python dependencies first (layer caching)
11
+ COPY requirements.txt .
12
+ RUN pip install --no-cache-dir -r requirements.txt
13
+
14
+ # Copy project code
15
+ COPY . .
16
+
17
+ # Expose API port (HuggingFace Spaces uses 7860)
18
+ EXPOSE 7860
19
+
20
+ # Start FastAPI
21
+ CMD ["uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "7860"]