File size: 251 Bytes
f18435c
0ee7f87
 
 
 
 
f18435c
 
 
421331a
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10-slim

WORKDIR /app

COPY . .

RUN pip install --upgrade pip
RUN pip install -r requirements.txt

# IMPORTANT: expose correct port
EXPOSE 7860

# CRITICAL: start FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]