File size: 212 Bytes
c151c44
6c8a2d5
10848f9
6c8a2d5
390e337
 
6c8a2d5
b67e3a6
c151c44
b67e3a6
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.10

COPY ./ ./

# Install dependencies
RUN pip install --no-cache --upgrade -r /requirements.txt

# Start the application
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860"]