File size: 200 Bytes
5a26670
 
 
 
 
 
 
 
 
 
 
 
 
 
c34364f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.10-slim

COPY . /app

WORKDIR /app

USER root

RUN pip install -r requirements.txt

RUN chmod -R 777 /app

EXPOSE 7860

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