File size: 183 Bytes
19f7665
bba6aca
19f7665
bba6aca
68109f6
d924411
bba6aca
19f7665
 
 
bba6aca
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10

WORKDIR /app

COPY requirement.txt .
RUN pip install --no-cache-dir -r requirement.txt

COPY . .

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