FROM python:3.11 COPY . /app WORKDIR /app RUN pip install -r req.txt EXPOSE 7860 CMD ["python", "/app/main.py"]