File size: 395 Bytes
cd688d7
 
 
 
 
 
 
ba2722e
 
 
cd688d7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.11-slim

WORKDIR /app

# Copy project files
COPY . .

# Install dependencies directly to be lightweight
RUN pip install --no-cache-dir -r requirements.txt && pip install --no-cache-dir .

# Set default env vars
ENV PYTHONUNBUFFERED=1

# Expose HF Spaces port
EXPOSE 7860

# Run the FastAPI server by default
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]