File size: 377 Bytes
cc3d0ec
 
 
 
2883c2a
 
 
 
 
cc3d0ec
 
 
c297f23
cc3d0ec
 
 
 
24e6cb0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.10-slim

WORKDIR /app

# 🔹 Install git (required for pip git+https deps)
RUN apt-get update && apt-get install -y git \
    && rm -rf /var/lib/apt/lists/*

# Install Python deps
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Copy app + src
COPY . .

EXPOSE 7860

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]