File size: 210 Bytes
867218b
 
 
 
 
0bf4759
867218b
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.10-slim

COPY requirements.txt .

RUN pip install --no-cache-dir -r requirements.txt && \
    pip install --no-cache-dir gradio==5.29.0 "uvicorn>=0.14.0" spaces

COPY . .

CMD ["python", "app.py"]