FROM python:3.11 WORKDIR /api COPY ./ /api/ RUN pip install --upgrade pip RUN pip install -r requirements.txt EXPOSE 7860 CMD python -u main.py